# DashboardFloatingActionsControls

Control methods exposed to dashboard sections for programmatic control

## Definition

```tsx
export interface DashboardFloatingActionsControls {
    /** Open the widget drawer programmatically */
    openWidgetDrawer: () => void;
    /** Close the widget drawer programmatically */
    closeWidgetDrawer: () => void;
}
```

## Usage

```tsx
import { DashboardFloatingActionsControls } from 'uxp/components';
```
