import { FunctionComponent, HTMLAttributes } from 'react';
import { WebContentProps } from "../../types";
export declare const defaultContentProps: {
    visible: boolean;
    title: string;
    header: string;
    footer: string;
    close: string;
    footerDirection: string;
    onClick: () => void;
};
export declare const Content: FunctionComponent<Partial<WebContentProps> & Omit<HTMLAttributes<HTMLDivElement>, 'title' | 'content'>>;
