import { CSSProperties, FC, PropsWithChildren } from 'react'; export type TextFieldProps = { shrink?: boolean; onChangeShrink?: (shrink: boolean) => void; className?: string; style?: CSSProperties; }; export declare const TextField: FC>; export type ChoiceFieldProps = { className?: string; style?: CSSProperties; }; export declare const ChoiceField: FC>;