import React, { ReactNode } from "react";
import { FCC } from "../../types";
export interface Props {
    appID: string;
    lang?: string;
    className?: string;
    href?: string;
    tabs?: string;
    hideCover?: boolean;
    height?: number | string;
    width?: number | string;
    showFacepile?: boolean;
    hideCTA?: boolean;
    smallHeader?: boolean;
    adaptContainerWidth?: boolean;
    lazy?: boolean;
    children?: ReactNode;
    style?: React.CSSProperties;
}
export declare const FacebookPage: FCC<Props>;
