import { type PropsWithChildren } from 'react'; import { Section } from './section'; import type { FlowSectionProps } from './interface'; export interface _FlowSectionProps extends FlowSectionProps { section: Section; } export declare function FlowSection({ children, ...props }: PropsWithChildren): import("react").ReactElement>;