import { VariantProps, TVReturnType } from 'tailwind-variants'; import { ClassNameValue } from 'tailwind-merge'; import { TVConfig } from 'tailwind-variants/dist/config'; declare const DrawerTheme: TVReturnType<{ [key: string]: { [key: string]: ClassNameValue | { base?: ClassNameValue; footer?: ClassNameValue; header?: ClassNameValue; content?: ClassNameValue; overlay?: ClassNameValue; wrapper?: ClassNameValue; panel?: ClassNameValue; }; }; } | { [x: string]: { [x: string]: ClassNameValue | { base?: ClassNameValue; footer?: ClassNameValue; header?: ClassNameValue; content?: ClassNameValue; overlay?: ClassNameValue; wrapper?: ClassNameValue; panel?: ClassNameValue; }; }; } | {}, { overlay: string; base: string; wrapper: string; panel: string; content: string; header: string; footer: string; }, undefined, TVConfig, { [key: string]: { [key: string]: ClassNameValue | { base?: ClassNameValue; footer?: ClassNameValue; header?: ClassNameValue; content?: ClassNameValue; overlay?: ClassNameValue; wrapper?: ClassNameValue; panel?: ClassNameValue; }; }; } | {}, { overlay: string; base: string; wrapper: string; panel: string; content: string; header: string; footer: string; }, TVReturnType, unknown, unknown, undefined>>; export type DrawerVariantProps = VariantProps; export type DrawerboxSlots = keyof ReturnType; export { DrawerTheme };