type Errors = { [index: string]: ErrorMessagesType; }; export type ErrorMessagesType = { message: string; type: string; description: string; }; export declare const errorStatus: Errors; export {};