import { InputTextProps } from '../InputText';
import { ButtonWithIconProps } from '../ButtonWithIcon';
export interface SearchBannerFormProps {
    /** The URL to submit form data to */
    action?: string;
    /** Custom submit function */
    onSubmit?(...args: unknown[]): unknown;
    /** The properties for the text input field */
    inputText: InputTextProps;
    /** The Search button */
    buttonSearch: ButtonWithIconProps;
}
declare const SearchBannerForm: (searchBannerForm: SearchBannerFormProps) => any;
export default SearchBannerForm;
