import { default as moment } from 'moment'; export declare const filterStatesDummyData: { vendors: { type: "select"; stateName: string; labelText: string; labelTooltip: { tooltipContent: string; position: "top"; children: string; }; options: { id: string; name: string; }[]; defaultValue: null; optionKeyName: string; }; marketplaces: { type: "multi-select"; formLabelProps: { label: string; }; options: { marketplace_name: string; }[]; selectPlaceholder: string; labelKey: string; selectedOptions: { marketplace_name: string; }[]; stateName: string; }; warehouse: { type: "select"; defaultValue: string; stateName: string; propName: string; optionKeyName: string; options: ({ id: number; text: string; value: string; } | { id: number; text: string; value: boolean; })[]; labelText: string; }; shipments: { type: "select"; defaultValue: string; options: ({ id: number; state: string; value: string; } | { id: number; state: string; value: number; })[]; stateName: string; optionKeyName: string; propName: string; labelText: string; }; ratings: { type: "select"; defaultValue: string; options: never[]; stateName: string; optionKeyName: string; propName: string; labelText: string; }; campaignTypes: { type: "select"; defaultValue: string; options: never[]; stateName: string; optionKeyName: string; propName: string; labelText: string; isError: boolean; }; text: { type: "text"; defaultValue: string; labelText: string; placeholder: string; stateName: string; rightLabel: string; }; dates: { type: "dates"; defaultValue: { start_date: moment.Moment; end_date: moment.Moment; }; labelText: string; specifiedDay: moment.Moment; stateName: string; dateRestrictions: { beforeDate: Date; afterDate: Date; }; }; textWithCurrency: { type: "text"; defaultValue: string; labelText: string; placeholder: string; stateName: string; numberFormat: { type: "currency"; currencySymbol: string; }; }; textWithPercentage: { type: "text"; defaultValue: string; labelText: string; placeholder: string; stateName: string; numberFormat: { type: "percentage"; }; inputLabel: string; }; };