import { type IUiButtonProps } from "@gooddata/sdk-ui-kit"; /** * Default implementation of the LandingQuestion slot. * * @alpha */ export interface ILandingQuestionProps { question: string; answer: string; icon?: IUiButtonProps["iconBefore"]; title?: string; } /** * Default implementation of the LandingQuestion slot. * * @alpha */ export declare function DefaultLandingQuestion({ icon, question, answer, title }: ILandingQuestionProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=LandingQuestion.d.ts.map