export type Slots = { default(props: { /** Whether or not the popover is open */ open: boolean; }): unknown; /** The popover contents */ popover(props: { /** Whether or not the popover is open */ open: boolean; /** A callback to close the popover */ close: () => void; }): unknown; /** Overrides the popover backdrop */ backdrop?(props: { /** Whether or not the popover is open */ open: boolean; }): unknown; }; //# sourceMappingURL=types.d.ts.map