import { DateTime } from 'luxon'; import { ValidationGroupValidatorFn } from '@mosaic-design/infosec-components/external/object-hash/utils'; interface RangeFromValidatorValue { fromTime?: DateTime; fromDate?: DateTime; toTime?: DateTime; toDate?: DateTime; } export declare const rangeFromValidator: ValidationGroupValidatorFn; export {};