/// import type { IFormInputProps } from '../presentation'; interface IApplicationsPickerInputProps extends IFormInputProps { /** When true, selects multiple apps. The picker returns an array of applications */ multi?: boolean; } /** This input supports single or multiple selection of applications */ export declare function ApplicationsPickerInput(props: IApplicationsPickerInputProps): JSX.Element; export {};