import React from 'react'; import { CollapsableProps } from './Collapsable'; import { TextProps } from './text/Text'; export declare type PaneTitleRowProps = CollapsableProps & Omit & { after?: React.ReactNode; before?: React.ReactNode; title?: React.ReactNode; }; export declare type PaneTitleRowParentProps = Pick & { afterTitle?: PaneTitleRowProps['after']; beforeTitle?: PaneTitleRowProps['before']; }; export declare function PaneTitleRow({ after, before, title, ...rest }: PaneTitleRowProps): JSX.Element; //# sourceMappingURL=PaneTitleRow.d.ts.map