// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IProps { searchQuery: string; placeholder?: string; arialable?: string; dataAutomationId?: string; disabled?: boolean; style?: React.CSSProperties; darkMode?: boolean; fontSize?: number; borderRadius?: number; borderColor?: string; borderWidth?: number; backgroundColor?: string; onChange?: (option: string) => void; } export interface IState { } export class IASearch extends React.Component { constructor(props: IProps); render(): JSX.Element; }