import { ContextAwareStateOptions } from '../core'; /** * Config for the {@link SelectQueryParam} decorator */ export interface SelectQueryParamOptions extends ContextAwareStateOptions { /** * The query param to select */ selector: string; } /** * Gets a named query param from the location * * @experimental * @param {StateOptions} options state decorator options * @returns {PropertyDecorator} state decorator */ export declare function SelectQueryParam(options: SelectQueryParamOptions): PropertyDecorator;