import { DialogHandle } from '../dialog/store/DialogHandle'; /** * Controls a drawer imperatively, and associates `Drawer.Trigger`s rendered * outside the root with it. * * A drawer reuses the dialog store, so it reuses its handle too — only the name * in warnings differs. */ export type DrawerHandle = DialogHandle; /** * Creates a handle that connects a `Drawer.Root` to triggers rendered outside it, * and controls it imperatively. */ export declare function createDrawerHandle(): DrawerHandle; //# sourceMappingURL=handle.d.ts.map