import * as React from 'react';
export declare function Wrapper(props: IWrapperProps): JSX.Element;
interface IWrapperProps {
    children: React.ReactNode;
    styles?: {
        [key: string]: string;
    };
}
export {};
