/**
 * Representation of the 'FileContent' schema.
 */
export type FileContent = {
    /**
     * Base64 encoded file content or file URL
     */
    file_data: string;
    /**
     * Name of the file
     */
    filename?: string;
};
//# sourceMappingURL=file-content.d.ts.map