import { CSSProperties, FC } from 'react';
import { ReactNode } from 'react';
interface KeepAliveProps {
    include?: Array<string>;
    exclude?: Array<string>;
    max?: number;
    children?: ReactNode;
    style?: CSSProperties;
    className?: string;
    styles?: {
        wrapper?: CSSProperties;
        content?: CSSProperties;
    };
    [key: string]: any;
}
export declare const KeepAlive: FC<KeepAliveProps>;
export {};
