import { ICustomError } from './custom-error.type';
export declare function isCustomError<GName extends string>(value: unknown, name: GName): value is ICustomError<GName>;
