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