export interface AllAssets { name: string; url: string; mimeType: string; altText: string; asset: Asset; } /** * Gets all assets from the Webflow Canvas with their metadata. */ export declare const getAllAssets: () => Promise;