import { CSSObject } from '@xstyled/styled-components';
import { ThemeValues } from '../../theme';
export type ThemeDropdownMenu = {
    inner: CSSObject;
    item: CSSObject;
    separator: CSSObject;
};
export declare const getDropdownMenu: (theme: ThemeValues) => ThemeDropdownMenu;
