interface StyleString {
    style: string;
}
type HTMLIFrameElementWithStyleString = Omit<HTMLIFrameElement, 'style'> & StyleString;
export type IframeOptions = {
    iframeProps?: Partial<HTMLIFrameElementWithStyleString>;
};
export {};
