export type Application = { appKey: string; platform: string; name: string; icon: string; }; export type Country = { name: string; iso2: string; iso3: string; phoneCode: string; }; export type Person = { name: string; short: string; }; export type Platform = { name: string; icon: string; }; export type groupOption = { childOptionsIds: string[]; isCollapse: boolean; }; export type EditColumns = { name: string; titleText: string; icon: string; disabled: boolean; groupOption: groupOption; }; export declare const apps: readonly Application[]; /** used to test performance (756 apps) */ export declare const applications: readonly Application[]; export declare const platform: readonly Platform[]; export declare const editColumns: readonly EditColumns[];