import { ReactNode } from "react";
export declare type Props = {
    title: string;
    children: ReactNode;
    className?: string;
    style?: Object;
};
