export interface Media {
    path?: string;
    uri?: string;
}
export declare function toBase64(media: Media): Promise<string>;
