import { type FC, type ReactNode } from "react"; type Props = { title: ReactNode; aside: ReactNode; isLoading?: boolean; }; export declare const SectionHeader: FC; export {};