export declare const COLUMN: { readonly text: "text"; readonly integer: "integer"; readonly float: "float"; readonly double: "double"; readonly bigint: "bigint"; readonly boolean: "boolean"; readonly datetime: "datetime"; readonly serial: "serial"; readonly uuid: "uuid"; readonly updatedAt: "updatedAt"; }; export declare type COLUMN = keyof typeof COLUMN; export declare type ID = typeof COLUMN.uuid | typeof COLUMN.serial; export declare const EDGE: { readonly oneToOne: "oneToOne"; readonly oneToMany: "oneToMany"; readonly manyToMany: "manyToMany"; }; export declare type EDGE = keyof typeof EDGE; export declare const FUNCTION: { readonly uuidv4: "__uuidv4"; readonly uuidv1: "__uuidv1"; readonly now: "__now"; }; export declare type FUNCTION = typeof FUNCTION[keyof typeof FUNCTION];