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