import * as React from 'react'; interface IInstallableContainer { children: React.ReactNode; pad?: boolean; } export declare const InstallableContainer: (props: IInstallableContainer) => React.JSX.Element; export {};