import AssistedSearchStore from '../stores/AssistedSearchStore'; /** * An action triggers an update to the store after the function (and any nested actions) have completed. * * @param target * @param propertyKey * @param descriptor */ export declare function action(target: AssistedSearchStore, propertyKey: string, descriptor?: PropertyDescriptor): any; /** * A dropdownAction triggers an update to the store, and triggers the dropdown to be updated based the current value of * the active input. * * @param target * @param propertyKey * @param descriptor */ export declare function dropdownAction(target: AssistedSearchStore, propertyKey: string, descriptor?: PropertyDescriptor): any; export declare function actionMethod(target: AssistedSearchStore, descriptor: PropertyDescriptor, dropdown: boolean): void; export declare function actionProperty(target: AssistedSearchStore, propertyKey: string, dropdown?: boolean): void;