// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; import "../../styles/BasicIA.css"; export interface IIAButtonProps { label?: string; arialable?: string; buttonColor?: string; borderColor?: string; mouseOverButtonColor?: string; textColor?: string; icon?: string; iconUrl?: string; iconColor?: string; iconMarginTop?: number; iconMarginLeft?: number; iconMarginRight?: number; iconRotationDegree?: number; height?: number | string; minHeight?: number; showSpinner?: boolean; disbaled?: boolean; fixedSize?: string; hasFixedSize?: boolean; fontSize?: number; style?: React.CSSProperties; styleLabel?: React.CSSProperties; borderRadius?: number; selected?: string; darkMode?: boolean; dataAutomationId?: string; iconSize?: number; showIconOnRight?: boolean; onClick?: () => void; onChange?: (option: string) => void; } export interface IIAButtonState { mouseOver: boolean; onMountWidth: number; } export class IAButton extends React.Component { constructor(props: IIAButtonProps); componentDidMount(): void; render(): JSX.Element; }