import './style.scss'; import type { IInputPropsBase } from '@adam-sv/arc'; import type { RefObject } from 'react'; export type TemporalInputType = 'date' | 'time' | 'datetime-local' | 'month' | 'week'; export interface ITemporalInputProps extends IInputPropsBase { type?: TemporalInputType; min?: string; max?: string; value?: string; inputRef?: RefObject; } export declare function TemporalInput(props: ITemporalInputProps): import("react/jsx-runtime").JSX.Element;