import React from 'react'; import { HeadingProps } from '..'; import { IconProp } from '../icons'; import { LinkProps } from 'react-router-dom'; export declare type SectionProps = { children: React.ReactNode; className?: string; row?: boolean; col?: boolean; }; export declare const Section: typeof SectionRoot & { Heading: typeof SectionHeading; Action: typeof SectionAction; TabLink: typeof SectionTabLink; }; export declare function SectionRoot({ children, className, row, col }: SectionProps): JSX.Element; export declare type SectionHeadingProps = { subheading?: React.ReactNode; subheadingIcon?: IconProp; className?: string; } & HeadingProps; declare function SectionHeading({ subheading, subheadingIcon, className, ...props }: SectionHeadingProps): JSX.Element; export declare type SectionActionProps = { children?: React.ReactNode; className?: string; }; declare function SectionAction({ children, className, ...props }: SectionActionProps): JSX.Element; export declare type SectionTabLinkProps = { children?: React.ReactNode; className?: string; to: string; } & Omit; declare function SectionTabLink({ children, className, to, ...props }: SectionTabLinkProps): JSX.Element; export {};