import { ReactNode } from 'react'; export type PanesTitleProps = { title: ReactNode; extra?: ReactNode; editable?: boolean; onSave?: (title: string) => void; }; declare const PanesTitle: import("@emotion/styled").StyledComponent; export default PanesTitle;