import React from 'react'; import { SubotMessage, SubotNodeAction } from "../../../interfaces/types"; export type Dropdown = { label: string; value: string; }; export type Props = { className?: string; style?: Record; actions: Array; countryCode: string; isFormRevamp?: boolean; callBack: (val: Record) => void; formSubmitMeta: SubotMessage['form_submit_meta'] | null; botId?: number | string; nodeId?: string; trackingSubmitBtn?: Record; }; declare const UserInfoForm: ({ className, style, actions, countryCode, callBack, formSubmitMeta, isFormRevamp, botId, nodeId, trackingSubmitBtn, }: Props) => React.JSX.Element; export { UserInfoForm };