import type { CSSProperties } from "../../html/_styles";
import { type InputComponent, type InputDomain, type InputProps } from "./common";
export declare const DropdownChoiceInput: InputComponent;
type Props = InputProps & {
choices: InputDomain;
selectedItemStyle?: CSSProperties;
optionStyle?: CSSProperties;
};
export {};