import React, { AllHTMLAttributes } from 'react';
import { SerializedStyles } from '@emotion/react';
import { CSSValueWithLength } from '../../styles';
import { InputSize, InputStatus } from '../input/types';
export interface DropdownLabelProps extends Omit, 'size'> {
height?: CSSValueWithLength;
width?: CSSValueWithLength;
status?: Extract;
disabled?: boolean;
/**
* @default false
* Option listbox 오픈 여부
*/
expanded?: boolean;
/**
* @default false
* Option 선택 여부
*/
selected?: boolean;
size?: InputSize;
actionCss?: SerializedStyles;
}
export declare const DropdownLabel: React.ForwardRefExoticComponent>;