import React from "react"; interface CustomDateRangeInputProps { value: string; setValue: (newVal: string) => void; setError: (newError: string) => void; error: string; ariaLabel: string; onFocus: () => void; } export declare const CustomDateRangeInput: React.ForwardRefExoticComponent>; export {};