import React, { CSSProperties, ReactNode } from 'react';
export type FormContainerProps = {
    title?: string;
    titleAlign?: string;
    description?: string;
    descriptionAlign?: string;
    className?: string;
    style?: CSSProperties;
    children?: ReactNode;
    header?: ReactNode;
    footer?: ReactNode;
};
/**
 *
 *  Use this component inside <form></form> tag
 *
 */
export declare const FormContainer: ({ title, titleAlign, description, descriptionAlign, className, style, children, header, footer, ...restProps }: FormContainerProps) => React.JSX.Element;
