import type { MaxHeight, Width } from '../types';
interface DropdownContainerProps {
    maxHeight?: MaxHeight | number;
    width?: Width | number | string;
    hideOverflow?: boolean;
}
export declare const DropdownContainer: import("styled-components").StyledComponent<"div", any, DropdownContainerProps, never>;
export {};
