/** Satisfies `Combobox` / `MultiCombobox` `AutoSizeConditionals` (mutually exclusive branches). */
export type ComboboxLayout = {
    width: 'auto';
    minWidth: number;
    maxWidth?: number;
} | {
    width?: number;
};
export declare function pickComboboxLayout(width: number | 'auto' | undefined, minWidth: number | undefined, maxWidth: number | undefined): ComboboxLayout;
