interface AmPmInputProps extends Omit<React.ComponentProps<'select'>, 'value' | 'onChange'> {
    labels: {
        am: string;
        pm: string;
    };
    value: string | null;
    inputType: 'select' | 'input';
    onChange: (value: string | null) => void;
    readOnly?: boolean;
    onPreviousInput?: () => void;
}
export declare function AmPmInput({ labels, value, onChange, className, style, onPreviousInput, readOnly, onMouseDown, onTouchStart, inputType, ...others }: AmPmInputProps): import("react/jsx-runtime").JSX.Element;
export declare namespace AmPmInput {
    var displayName: string;
}
export {};
