/// <reference types="react" />
export interface PresentationConfigProps {
    exposeShowInSummary?: boolean;
    exposeShowInEmail?: boolean;
    exposeShowInPDF?: boolean;
}
declare const PresentationConfig: React.FC<PresentationConfigProps>;
export default PresentationConfig;
