import { InjectedIntl } from 'react-intl'; import { FormSelectChoice } from '../../types/types'; type compareLabelReturn = 1 | -1; export declare const compareLabel: (a: FormSelectChoice, b: FormSelectChoice) => compareLabelReturn; export declare const SortByLabel: (choices: FormSelectChoice[]) => FormSelectChoice[]; export declare const getFormFieldSelectOptions: (namespace: string, optionValues: string[], intl: InjectedIntl) => FormSelectChoice[]; export {};