import React from 'react';
import type { SVGProps } from "react";
export declare const questionBubbleData: {
    '32x32_32': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
};
export interface QuestionBubbleProps extends SVGProps<SVGSVGElement> {
    /**
     * Icon variant to use.
     **/
    variant?: '32x32_32';
}
export declare const QuestionBubble: React.FC<QuestionBubbleProps>;
