import { Static } from "../types"; import { Callable } from "../types"; declare function parent(parent: Static): (target: any) => void; declare function match(match: string): (target: any) => void; declare function canRead(canRead: string | Callable): (target: any) => void; declare function canList(canList: string | Callable): (target: any) => void; declare function canDelete(canDelete: string): (target: any) => void; declare function canWrite(rule: string | Callable): (target: Object, propertyKey?: string | undefined) => void; export { canList, canDelete, canRead, canWrite, parent, match }; //# sourceMappingURL=model.d.ts.map