import { Plugin, type Source, type Record, ElementAccessExpressionShape } from '@servicenow/sdk-build-core'; export declare class NowIdShape extends ElementAccessExpressionShape { constructor({ source, id }: { source: Source; id: string | number; }); getValue(): string | number; static from(record: Record): NowIdShape; getCode(): string; } export declare const NowIdPlugin: Plugin;