import { FunctionalComponent } from '../../stencil-public-runtime';
import { LANGUAGE_TYPES } from "../../managers/language/constants";
export declare const DEFAULT_STYLE_INJECT = "<style>:host  button { padding:8px 8px 8px 8px; } :host  button:hover, button:active, button:focus-visible { color:white !important; border-radius: 8px !important;  background: rgba(255, 255, 255, 0.4) !important;} </style>";
interface IconSdxButtonProps {
    className?: string;
    colorClass?: string;
    handleBackCallback: (event: Event) => void;
    iconName: string;
    language?: LANGUAGE_TYPES;
    size?: string;
    srHint: string;
    injectStyle?: boolean;
}
export declare const IconSdxButton: FunctionalComponent<IconSdxButtonProps>;
export {};
