import { type CSSProperties } from "../../"; import type { InputDomain, InputComponent, InputProps } from "./common"; import { type ViewProps } from "../misc/_view"; export declare const InputChoiceButtons: InputComponent & PropsCommon>; /** Basic props for input element with single-selection choices */ export type InputChoiceProps = InputProps & { domain: InputDomain; selectedItemStyle?: CSSProperties; }; export declare const InputMultiChoiceButtons: InputComponent & PropsCommon>; /** Basic props for input element with multiple-selection choices */ export type InputMultiChoiceProps = InputProps & { domain: InputDomain; selectedItemStyle?: CSSProperties; /** Label for optional select all button */ selectAllLabel?: string; }; type PropsCommon = Pick; export {};