import { PrimaryKeyType } from './glossary'; export declare type PrimaryKeyGetter = () => ValueType; export declare class PrimaryKey { getPrimaryKeyValue: PrimaryKeyGetter; constructor(getter: PrimaryKeyGetter); } export declare function primaryKey(getter: PrimaryKeyGetter): PrimaryKey;