import type { FsCondition } from '../errors/index.ts'; export declare const ROUTED_VERBS: Readonly>; export declare const REFUSED_VERBS: Readonly>; export declare const PASSTHROUGH_VERBS: ReadonlySet; export declare const CLASSIFIED_VERBS: ReadonlySet; /** * The condition a surface answers for `verb`, or null when served. * * A verb absent from every table is refused too: default-deny is what * keeps a name nobody classified from reaching the host filesystem with * a mounted path in hand. * * Args: * verb: the POSIX spelling of the guest verb. */ export declare function refusalOf(verb: string): FsCondition | null; //# sourceMappingURL=verbs.d.ts.map