import React from 'react';
import { ConsentUiBoxEmbedProps } from '@bemit/consent-ui-mui/ConsentUiBoxEmbed';
export interface ConsentUiEmbedTwitterProps {
    tweet: string;
    user: string;
    px?: number;
    py?: number;
}
export declare const ConsentUiEmbedTwitter: React.ComponentType<Pick<ConsentUiBoxEmbedProps, 'labels' | 'title' | 'icon' | 'service' | 'infoBtnUp' | 'infoMaxWidth' | 'pos'> & ConsentUiEmbedTwitterProps>;
export declare const EmbedTweet: React.ComponentType<{
    consent: any;
    user: string;
    tweet: string;
    py: number;
}>;
