import { IntegrationSpecificElementSelector, WorkspaceElementType } from '@membranehq/sdk'; export interface ElementKeyPayload { type: WorkspaceElementType; selector: IntegrationSpecificElementSelector | string | undefined; token?: string; } export declare const ELEMENT_KEY_PREFIX = "element:"; export declare function stringifyElementKey({ type, selector, token }: ElementKeyPayload): string; export declare function parseElementKey(keyString: string): ElementKeyPayload; export declare function matchElementKey(keyString: string, query: { type?: WorkspaceElementType; selector?: IntegrationSpecificElementSelector | string; token?: string; }): boolean;