import { NormalSizes } from '../utils/prop-types'; import { HuiThemes } from '../themes'; export interface SelectSize { height: string; fontSize: string; minWidth: string; } export declare const getSizes: (theme: HuiThemes, size?: NormalSizes) => SelectSize;