import * as React from 'react';
export interface PlaceHolderProps {
    translation: any;
}
export default class PlaceHolder extends React.Component<PlaceHolderProps, any> {
    constructor(props: any);
    render(): JSX.Element;
}
