import { FunctionComponent, ReactNode, HTMLAttributes, CSSProperties } from 'react';
interface ContentProps {
    visible: boolean;
    title: ReactNode;
    footer: ReactNode;
    footerDirection: string;
    style?: CSSProperties;
    buttonType?: 'normal' | 'round';
}
export declare const Content: FunctionComponent<Partial<ContentProps> & HTMLAttributes<HTMLDivElement>>;
export {};
