import type { Ref } from 'vue'; import MimeType from 'whatwg-mimetype'; /** * Processes the response body of an HTTP request. * Extracts MIME type, attachment filename, and generates a data URL. */ export declare function useResponseBody(props: { data: Ref; headers: Ref<{ name: string; value: string; required: boolean; }[]>; }): { mimeType: import("vue").ComputedRef; attachmentFilename: import("vue").ComputedRef; dataUrl: import("vue").ComputedRef; }; //# sourceMappingURL=useResponseBody.d.ts.map