UNPKG

@mantine/dates

Version:

Calendars, date and time pickers based on Mantine components

17 lines (16 loc) 616 B
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 {};