import React, { ReactNode } from 'react'; import { BaseProps, SizeType } from '@toptal/picasso'; declare type VariantType = 'bordered' | 'default' | 'withHeaderBar'; export interface Props extends BaseProps { /** Title of the Section */ title?: ReactNode; /** Subtitle of the Section */ subtitle?: ReactNode; /** Additional actions of the Section */ actions?: ReactNode; /** Main content of the Section */ children?: ReactNode; /** Whether section can be collapsed */ collapsible?: boolean; /** Default collapsed value **(applied if `collapsible: true`)** */ defaultCollapsed?: boolean; testIds?: { header?: string; title?: string; subtitle?: string; actions?: string; collapse?: string; }; variant?: VariantType; /** Title size of the inner text */ titleSize?: SizeType<'small' | 'medium'>; } export declare const Section: React.ForwardRefExoticComponent>; export default Section;