export declare type NamedType = {
    name: string;
};
export declare const isNamed: (SomeType: any) => SomeType is NamedType;
