export type SelectOptionObject = { value: string | number; label: string | number; ariaLabel: string; }; /** * Build an array of SelectOptionObject * * @method buildSelectOptions * @param {number} iterations how many items will be in array * @param {[Function]} args a list of parameters for the factorySelectOption function * @return {Array} */ export declare const buildSelectOptions: (iterations: number, args: (page: number) => string) => SelectOptionObject[]; /** * @method factorySelectOption * @param {any} value * @param {Function} factoryAriaLabel function to use in ariaLabel property * @return {SelectOptionObject} */ export declare const factorySelectOption: (value: number, factoryAriaLabel: (page: number) => string) => SelectOptionObject;