import type { ReactNode } from "react"; /** * @beta */ export interface ILandingContentProps { children: ReactNode; isFullscreen?: boolean; isBigScreen?: boolean; isSmallScreen?: boolean; } /** * Default implementation of the LandingContainer slot. * * @alpha */ export declare function DefaultLandingContainer({ children, isBigScreen, isSmallScreen, isFullscreen, }: ILandingContentProps): import("react/jsx-runtime").JSX.Element; /** * Default implementation of the LandingQuestions slot. * * @alpha */ export declare function DefaultLandingQuestions({ children, isFullscreen, isBigScreen, isSmallScreen, }: ILandingContentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=LandingContainer.d.ts.map