export interface CustomErrorType {
    new (m?: string): {
        message: string;
    };
}
export declare function createCustomError(msg?: string): CustomErrorType;
