import { StateOptions } from '../core'; /** * Config for the {@link SelectConfig} state decorator */ export interface SelectConfigOptions extends StateOptions { name?: string; } /** * Gets an object with all configs where key is used as key. * * @param {SelectConfigOptions} options state decorator options * @returns {Function} state decorator */ export declare function SelectConfig(options: SelectConfigOptions): PropertyDecorator;