import { UserTaskFormField } from './user_task_form_field'; /** * Contains information about a UserTasks configuration. */ export declare class UserTaskConfig { /** * A list of accessible FormFields for the UserTask. */ formFields: Array; /** * The perferred type of control for the FormField. */ preferredControl?: string; description?: string; finishedMessage?: string; }