import { type StyledProps } from "./Styled"; /** * moaui Styled Drop List Component * @param {StyledProps} props - width, itemList, value, onChange, defaultValue, disabled, backgroundColor, listWidth, placeholder, maxLength * @example * {}} * value={1} * defaultValue={1} * disabled={false || true} * backgroundColor="white" * listWidth="100px" * placeholder="placeholder" * maxLength={10} * /> * @returns {React.ReactElement} MoaDropList */ declare const DropList: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; declare const SampleProps: StyledProps; export default DropList; export { type StyledProps as DropListProps, SampleProps as DropListSample, }; //# sourceMappingURL=index.d.ts.map