import React from 'react'; interface AmPmInputProps extends Omit, 'value' | 'onChange'> { labels: { am: string; pm: string; }; value: string | null; inputType: 'select' | 'input'; onChange: (value: string | null) => void; readOnly?: boolean; onPreviousInput?: () => void; } export declare const AmPmInput: React.ForwardRefExoticComponent>; export {};