export type ClauseKind = 'u' | 'g' | 'o'; export type ClauseOperator = '+' | '-' | '='; export type PermissionBits = { readonly read: number; readonly write: number; readonly execute: number; }; export declare const CLAUSE_REGEX: RegExp; export declare const CLAUSE_TARGETS: Set; export declare const CLAUSE_PERMISSIONS: Set; export declare const CLAUSE_BITS: Record; export declare const TARGET_PERMISSION_MASK: { readonly u: number; readonly g: number; readonly o: number; };