import React from 'react';
import { ConsentUiBoxEmbedProps } from '@bemit/consent-ui-mui/ConsentUiBoxEmbed';
export declare const ConsentUiEmbedIframe: React.ComponentType<Pick<ConsentUiBoxEmbedProps, 'labels' | 'title' | 'icon' | 'service' | 'infoBtnUp' | 'infoMaxWidth' | 'pos'> & {
    srcOnInit?: string;
    preview?: string | React.ReactNode | ((consent: undefined | 1 | 2) => void);
    previewAlt?: string;
    maskBg?: string;
    blur?: string;
    px?: number;
    py?: number;
} & React.HTMLProps<HTMLIFrameElement>>;
export declare const EmbedIframe: React.ComponentType<{
    consent: any;
    srcOnInit?: string;
} & React.HTMLProps<HTMLIFrameElement>>;
export declare const ImagePreview: React.ComponentType<{
    consent: any;
    preview: string;
    previewAlt?: string;
    blur?: string;
}>;
