import { PeriodOptionsNames } from "fwork-jsts-common"; import { Moment } from "moment"; import React from "react"; export interface IDateTimeRangeDialogComponentProps { style?: React.CSSProperties | undefined; initPeriodOptionsName?: PeriodOptionsNames; diProps?: { initValue: Moment | undefined; }; dfProps?: { initValue: Moment | undefined; }; onConfirm?: (di: Moment | undefined, df: Moment | undefined, label: string | undefined, periodValueKey?: PeriodOptionsNames) => void; } export declare const DateTimeRangeComponent: React.FC;