import { type DropdownStyleProps } from '../../types'; export interface UseDropdownStylePropsReturn { classProps: { root: string; trigger: string; popover: string; }; props: DropdownStyleProps; } export declare const useDropdownStyleProps: (props?: DropdownStyleProps) => UseDropdownStylePropsReturn;