import { JSX } from 'react'; import { FunctionComponent } from 'react'; import { MixedSection, Section } from '../../state'; export default function ServerSectionComponent({ section, availableSections, fallbacks, }: { section: Section; availableSections: { [key: string]: (props: { section: Section; }) => JSX.Element | Promise; }; fallbacks?: { [key: string]: FunctionComponent<{ variant?: string; }> | undefined; }; }): Promise; //# sourceMappingURL=server-section-component.d.ts.map