import { MemoizedSelector } from '@ngrx/store'; export interface IOption { value: T; display: string; } export declare function Options(...options: Array | Array): (target: any, propertyKey: any) => void; export declare function OptionsFromSelector(selector: MemoizedSelector>>): (target: any, propertyKey: string) => void;