import { IOption } from '../models';
/**
 * Order by option name in ascending order.
 * @param {IOption[]} options for Select component.
 * @return {IOption[]} results sorted by name in ascending order.
 */
export declare const useGetOptionsBySort: (options: IOption[]) => IOption[];
