import React from 'react';
export interface PlaceholderProps extends React.ComponentPropsWithoutRef<'div'> {
    text?: string;
}
export declare function Placeholder({ text, style, ...props }: PlaceholderProps): React.JSX.Element;
