import { IMediaDataTransformation } from '../../../../../../../media';
import { XmlAttributeComponent, XmlComponent } from '../../../../../../../xml-components';
export declare class FormAttributes extends XmlAttributeComponent<{
    readonly flipVertical?: boolean;
    readonly flipHorizontal?: boolean;
    readonly rotation?: number;
}> {
    protected readonly xmlKeys: {
        flipVertical: string;
        flipHorizontal: string;
        rotation: string;
    };
}
export declare class Form extends XmlComponent {
    private readonly extents;
    private readonly offset;
    constructor(options: IMediaDataTransformation);
}
