import * as tailwind_variants from 'tailwind-variants'; import { VariantProps } from 'tailwind-variants'; /** * Drawer **Tailwind Variants** component * */ declare const drawer: tailwind_variants.TVReturnType<{ placement: { top: { base: string; }; right: { base: string; }; bottom: { base: string; }; left: { base: string; }; }; backdrop: { transparent: { backdrop: string; }; opaque: { backdrop: string[]; }; blur: { backdrop: string[]; }; }; }, { base: string[]; backdrop: string[]; dialog: string[]; header: string[]; body: string[]; footer: string[]; closeButton: string[]; }, undefined, { placement: { top: { base: string; }; right: { base: string; }; bottom: { base: string; }; left: { base: string; }; }; backdrop: { transparent: { backdrop: string; }; opaque: { backdrop: string[]; }; blur: { backdrop: string[]; }; }; }, { base: string[]; backdrop: string[]; dialog: string[]; header: string[]; body: string[]; footer: string[]; closeButton: string[]; }, tailwind_variants.TVReturnType<{ placement: { top: { base: string; }; right: { base: string; }; bottom: { base: string; }; left: { base: string; }; }; backdrop: { transparent: { backdrop: string; }; opaque: { backdrop: string[]; }; blur: { backdrop: string[]; }; }; }, { base: string[]; backdrop: string[]; dialog: string[]; header: string[]; body: string[]; footer: string[]; closeButton: string[]; }, undefined, unknown, unknown, undefined>>; type DrawerVariantProps = VariantProps; type DrawerSlots = keyof ReturnType; type DrawerReturnType = ReturnType; export { type DrawerReturnType, type DrawerSlots, type DrawerVariantProps, drawer };