export interface AttributeWithCacheKey {
    readonly cacheKey: string;
}
export declare const createAttributeWithCacheKey: <T extends Record<string, unknown>>(attribute: T) => T & AttributeWithCacheKey;
