import React from 'react'; import type { TBackgroundImages } from '../../types/TBackgroundImages'; export declare const backgroundMapping: { default: string[]; couple: string[]; demographic: string[]; homeMinimum: string[]; homeModerate: string[]; homeComfortable: string[]; essentialsMinimum: string[]; essentialsModerate: string[]; essentialsComfortable: string[]; transportMinimum: string[]; transportModerate: string[]; transportComfortable: string[]; leisureMinimum: string[]; leisureModerate: string[]; leisureComfortable: string[]; personalMinimum: string[]; personalModerate: string[]; personalComfortable: string[]; giftsMinimum: string[]; giftsModerate: string[]; giftsComfortable: string[]; other: string[]; }; export declare type TBackgroundName = keyof typeof backgroundMapping; export declare type QuestionContainerProps = { backgroundName: TBackgroundName; configBackgroundImages?: TBackgroundImages; children?: React.ReactNode; }; export declare const QuestionContainer: ({ backgroundName, children, configBackgroundImages, }: QuestionContainerProps) => import("@emotion/react/jsx-runtime").JSX.Element;