import { MixedContentContext } from '@progress/sitefinity-nextjs-sdk';
import { OffsetStyle } from '../../styling/offset-style';
export declare enum AfterIntentAction {
    Stay = "stay",
    Redirect = "redirect"
}
export declare class IntentBoxEntity {
    AfterIntentIsSubmitted: AfterIntentAction;
    TargetPage: MixedContentContext | null;
    SfWidgetLabel: string;
    Suggestions: string[];
    SfViewName: string;
    Margins: OffsetStyle | null;
    CssClass: string;
    Label: string | null;
    PlaceholderText: string | null;
    SuggestionsLabel: string | null;
    SubmitButtonTooltip: string | null;
}
