/** Private database capability */
export interface Capability {
    /** Can the object be created */
    create: boolean;
    /** Can the object be deleted */
    delete: boolean;
    /** Object name */
    object: string;
    /** Can the object be updated */
    update: boolean;
}
//# sourceMappingURL=Capability.d.ts.map