export interface Obj {
    [key: string]: unknown;
}
export type Fn = (...args: unknown[]) => unknown;
export type ServiceQuery = [
    {
        params: {
            key?: string;
        } & Record<string, any>;
    }
];
export type ServiceResult = string;
