import { type IconProps } from '@pega/cosmos-react-core'; import { type FieldType } from '@pega/cosmos-react-build'; export type ContentType = 'Field' | 'View' | 'Group'; export interface MockRawItem { id: string; label: string; type: ContentType; subType?: FieldType; icon?: IconProps; items?: MockRawItem[]; } export interface MockQueryParams { id?: MockRawItem['id'] | MockRawItem['id'][]; filter?: string; type?: ContentType; subType?: FieldType; limit?: number; offset?: number; delay?: number; } export declare const mockFields: MockRawItem[]; export declare const mockViews: MockRawItem[]; export declare const mockGroups: MockRawItem[]; export declare const mockQuery: ({ id, filter, type, subType, limit, offset, delay }?: MockQueryParams) => Promise; //# sourceMappingURL=mockData.d.ts.map