import { type Ref } from 'vue'; import type { ThemableChildrenApply } from '../types'; import type { FlowbiteTheme } from '../../../../components/utils/FlowbiteThemable/types'; type UseFlowbiteThemableChildReturns = { classes: Ref; }; type UseFlowbiteThemableChildProps = { apply: Ref; theme?: Ref; }; export declare function useFlowbiteThemableChildClasses(props: UseFlowbiteThemableChildProps): UseFlowbiteThemableChildReturns; export {};