import React from 'react'; interface LeavePeriodInputProps { defaultValue?: any; onChange?: (value: any) => void; } declare const LeavePeriodInput: ({ defaultValue, onChange, }: LeavePeriodInputProps) => React.JSX.Element; export default LeavePeriodInput;