import { ViewPropsBase } from '../../common/view-props-base';
import { IntentBoxEntity } from './intent-box.entity';
export interface IntentBoxViewProps extends ViewPropsBase<IntentBoxEntity> {
    labelText: string;
    placeholder: string;
    submitButtonTooltip: string;
    containerCss: string;
    pageUrl: string;
    inputId: string;
    suggestions?: string[];
    suggestionsLabel?: string;
}
export declare function IntentBoxDefaultView(props: IntentBoxViewProps): import("react/jsx-runtime").JSX.Element;
