import { ImperativeModalChildrenProps } from '@td-design/react-native/lib/typescript/modal/type';
import type { DatePeriodInputProps } from '.';
export default function useDatePeriodInput({ value, onChange, format, ...restProps }: ImperativeModalChildrenProps<Pick<DatePeriodInputProps, 'value' | 'onChange' | 'format'>>): {
    dates: [Date | undefined, Date | undefined] | undefined[];
    handleStartPress: () => void;
    handleEndPress: () => void;
    clearStartDate: () => void;
    clearEndDate: () => void;
};
//# sourceMappingURL=useDatePeriodInput.d.ts.map