import { SectionWrapperProps } from '../../sections'; import { ContainerWidth, MixedSection } from '../../state'; import { FunctionComponent, ReactNode } from 'react'; /** * Provides a wrapper for skeleton components for sections which require additional * data requests, eg. property slider sections, to ensures the skeleton has the same * vertical and horizontal spacing as the end loaded section and reduce CLS as much * as possible. */ export default function ServerSectionSkeletonWrapper({ children, section, Container, }: { children: ReactNode; Container: FunctionComponent<{ children: ReactNode; containerWidth?: ContainerWidth; }>; } & SectionWrapperProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=server-section-skeleton-wrapper.component.d.ts.map