interface Props {
    styles?: string;
    children?: JSX.Element | any;
}
declare const CustomCssWrapperComponent: {
    ({ styles, children }: Props): JSX.Element;
    defaultProps: {
        styles: string;
        children: string;
    };
};
export { CustomCssWrapperComponent };
