export interface IApiResponse { status: 'success' | 'failure'; message?: string; data?: any; } export declare const isIApiResponse: (t: any) => t is IApiResponse;