import { AllHTMLAttributes, CSSProperties, PropsWithChildren } from 'react'; export interface ContainerWrapperProps extends AllHTMLAttributes { classNames?: string; style?: CSSProperties; } declare function ContainerWrapper(props: PropsWithChildren): JSX.Element; export default ContainerWrapper;