import { PropsWithChildren } from 'react';
interface ContentPlaceholderProps extends PropsWithChildren {
    variant: 'builder' | 'designer';
    testId?: string;
}
declare const ContentPlaceholder: React.FC<ContentPlaceholderProps>;
export default ContentPlaceholder;
