import { type Ref } from 'vue'; import type { DropdownPlacement } from '../types'; export type UseDropdownClassesProps = { placement: Ref; contentRef: Ref; visible: Ref; }; export declare function useDropdownClasses(props: UseDropdownClassesProps): { contentClasses: Ref; contentStyles: Ref; };