import { ISerializable } from "./type-serialization";
export declare class GxVideo implements ISerializable {
    uri: string;
    constructor(url?: string);
    serialize(): string;
    deserialize(x: any): GxVideo;
    isEmpty(): boolean;
    setEmpty(): void;
    get VideoName(): string;
    get VideoType(): string;
    get VideoURI(): string;
    set VideoURI(uri: string);
    FromURL(uri: string): void;
    static createVideo(url: string): GxVideo;
}
