import React from 'react'; import type { TBackgroundImages } from '../../types/TBackgroundImages'; import type { TBackgroundName } from '../QuestionContainer'; export declare type TFormWrapperProps = { title?: string; titleId?: string; children?: React.ReactNode; isValid?: boolean; backgroundName: TBackgroundName; configBackgroundImages?: TBackgroundImages; }; export declare const FormWrapper: ({ isValid, titleId, title, backgroundName, children, configBackgroundImages, }: TFormWrapperProps) => import("@emotion/react/jsx-runtime").JSX.Element;