export interface IApiResponse { success?: boolean | null; errors: { [key: string]: string[]; }; value?: TValue | null; }