export interface IBlockType { id: string; created: Date; updated: Date; name: string; slug: string; logoUrl: string | null; documentationUrl: string | null; description: string | null; codeExample: string | null; } export declare class BlockType implements IBlockType { readonly id: string; readonly kind = "blockType"; created: Date; updated: Date; name: string; slug: string; logoUrl: string | null; documentationUrl: string | null; description: string | null; codeExample: string | null; constructor(blockType: IBlockType); }