/** * Parse a data: URI into its components. * Replaces the `data-uri-to-buffer` npm package. * * Format: data:[][;base64], */ export declare function parseDataUri(uri: string): { buffer: Uint8Array; typeFull: string; };