import * as React from 'react';
export interface PlaceholderProps {
    show?: boolean;
}
export default function Placeholder(props: PlaceholderProps): React.JSX.Element;
