export type PasteKind = "text" | "binary" | "unknown"; export interface PasteMetadata { kind?: PasteKind; mimeType?: string; } export declare function decodePasteBytes(bytes: Uint8Array): string; //# sourceMappingURL=paste.d.ts.map