Files
emaui/node_modules/@mantine/dates/lib/components/TimePicker/AmPmInput/AmPmInput.d.ts
2026-05-29 15:23:46 +03:00

15 lines
492 B
TypeScript

import React from 'react';
interface AmPmInputProps extends Omit<React.ComponentPropsWithoutRef<'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 const AmPmInput: React.ForwardRefExoticComponent<AmPmInputProps & React.RefAttributes<HTMLSelectElement>>;
export {};