export interface Share { expires?: string; description?: string; link_1?: { url: string; textcolor: string; title: string; }; comments_enabled?: boolean; view_enabled?: boolean; downloads_enabled?: boolean; receive_enabled?: boolean; display_type?: DisplayType; workspace_style?: boolean; } export declare enum VerifyOptions { 'Only users explicitly listed can access (private)' = "Only users explicitly listed can access (private)", 'Only registered user can access (public).' = "Only registered user can access (public).", 'Any client can access (public)' = "Any client can access (public)" } export declare enum RecipientVisibility { 'All actiivty is visible (public)' = "All actiivty is visible (public)", 'Only users activity is visible (private)' = "Only users activity is visible (private)" } export declare enum DisplayType { 'List' = "List", 'Thumbnail' = "Thumbnail", 'Gallery' = "Gallery", 'Blog' = "Blog" } export interface ShareDetails { result: boolean; share: { custom_name: string; id: number; parent: number; created: string; updated: string; deleted: boolean | null; description: string; comments_enabled: boolean; view_enabled: boolean; display_type: DisplayType; workspace_style: boolean; link_1: { url: string; textcolor: string; title: string; }; locked: boolean; suspended: boolean; closed: boolean; }; }