import React, { PropsWithChildren } from 'react'; import { SectionTitleProps } from '../section-title'; import { BreadcrumbProps } from '../../components'; export interface PageHeaderProps { /** @default false */ dense?: boolean; /** @default true */ border?: boolean; /** @deprecated 스펙아웃될 예정입니다. SectionTitle 삽입시 sectionTitleProps를 이용해주세요. */ children?: React.ReactNode; /** * [sectionTitleProps](https://storybook.kakaostyle.in/master/pds/?path=/docs/container-sectiontitle--docs) * - PageHeader내 SectionTitle 주입이 필요할 경우 SectionTitle Props 정보를 전달하면 children 요소로써 자동 생성됩니다. * - SectionTitle의 안전 여백은 PageHeader에서 사용시 자동 0으로 세팅되며, 필요시 SectionTitleProps에서 재정의할 수 있습니다. */ sectionTitleProps?: SectionTitleProps; breadcrumbProps?: BreadcrumbProps; } export declare const PageHeader: ({ dense, border, sectionTitleProps, breadcrumbProps, children, }: PropsWithChildren) => import("@emotion/react/jsx-runtime").JSX.Element;