import * as React from "react"; interface ISurfacePlaceholderProps { name: string; placeholderTitleText: string; placeholderDescriptionText: string; } export declare class SurfacePlaceholder extends React.Component { constructor(props: ISurfacePlaceholderProps); render(): React.JSX.Element; } export {};