import React, { type JSX } from 'react'; import type { RangeDatePickerProps as CoreRangeDatePickerProps, Overwrite } from '@epam/uui-core'; export interface RangeDatePickerModsOverride { } type RangeDatePickerMods = { /** * Defines component size. */ size?: '24' | '30' | '36' | '42' | '48'; }; /** * Represents the properties of the RangeDatePicker component */ export interface RangeDatePickerProps extends CoreRangeDatePickerProps, Overwrite { } declare function RangeDatePickerComponent(props: RangeDatePickerProps, ref: React.ForwardedRef): JSX.Element; export declare const RangeDatePicker: (props: RangeDatePickerProps & { ref?: React.ForwardedRef; }) => ReturnType; export {}; //# sourceMappingURL=RangeDatePicker.d.ts.map