import { Selector } from "./Selector";
export declare class KeyDesc extends Selector {
    readonly type: string;
    readonly key: string;
    constructor(key: string);
    toJson(): {
        $key: string;
    };
}
/**
 * Key
 */
export declare function Key(k: string): KeyDesc;
