type ObjectTagOptions = {
    data: string;
    width?: string;
    height?: string;
    type: "application/pdf";
};
type VideoTagOptions = {
    src: string;
    controls?: boolean;
    width?: string;
    height?: string;
};
export declare const HTMLUtils: {
    objectToPropertiesStr: (object: Record<string, string | boolean | undefined | null>) => string;
    objectTag: (options: ObjectTagOptions) => string;
    videoTag: (options: VideoTagOptions) => string;
};
export {};
