export interface PartContainer {
    state?: boolean | null;
    content?: any;
    left?: {
        children?: any;
        onClick?: Function;
    };
    right?: {
        children?: any;
        onClick?: Function;
    };
    style?: object;
    onBack?: Function;
}
export default function PartContainer(props: PartContainer): import("react").JSX.Element;
//# sourceMappingURL=PartContainer.d.ts.map