export declare const CHARTWIZARDICONTEXTWRAPPER_CLASSNAME = "k-icon-text-wrapper";
declare const states: ("focus" | "selected")[];
export type ChartWizardIconTextWrapperProps = {
    icon: string;
    text: string;
};
export type ChartWizardIconTextWrapperState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const ChartWizardIconTextWrapper: {
    (props: ChartWizardIconTextWrapperProps & ChartWizardIconTextWrapperState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: ("focus" | "selected")[];
    options: {};
    className: string;
    defaultOptions: {};
};
export default ChartWizardIconTextWrapper;
