import React from 'react';
import './page-header.scss';
declare type Props = {
    section?: string;
    title?: string;
    handleEditTitle?: (text: string) => void;
    description?: string;
    handleEditDescription?: (text: string) => void;
    /**
     * If the header content should be generally constrained to the
     * max line length of page text. Primarily for non pappern pages.
     */
    constrained?: boolean;
    /**
     * Flush the default --space-xl padding. Also strips the default
     * border-bottom.
     */
    flush?: boolean;
};
export declare const PageHeader: React.FC<Props>;
export {};
//# sourceMappingURL=page-header.d.ts.map