/** Shared info type. */
export interface ShareInfoType {
    content: string;
    url?: string;
    imageBlob?: Blob;
}
export interface ShareInfo {
    /** The content to be shared. */
    content: string;
    /** The URL to be shared (optional). */
    url?: string;
    /** A list of image data identifiers (optional). */
    imageData?: number[];
}
