import * as React from 'react';
interface Props {
    to: string;
    children?: React.ReactNode;
}
declare const PlaceholderContainer: React.FC<Props>;
export default PlaceholderContainer;
