import type { ComponentPropsWithoutRef, FC, ReactNode } from "react"; type Props = ComponentPropsWithoutRef<"div"> & { children?: ReactNode; }; export declare const Section: FC; export {};