export declare const OPEN_PRINT_V1_MAX_COLLECTOR_LABEL_LENGTH = 120; export declare const OPEN_PRINT_V1_CERTIFICATE_NOTICE = "An Open Print certificate is a signed statement by its issuer about a specific edition record. It does not by itself prove authorship, copyright, possession, legal ownership, transfer of rights, or financial value."; export declare const OPEN_PRINT_V1_VERIFICATION_ASSURANCE: Readonly<{ establishes: "When the corresponding checks pass: record integrity, a valid signature from a key in the supplied issuer record, and the certificate status in the supplied registry."; doesNotEstablish: "Authorship, copyright, possession, legal ownership, transfer of rights, financial value, or the real-world identity of a person or institution."; }>; export type V1CollectorClaims = Readonly<{ displayName: string | null; }>; export type V1PreparedCollector = Readonly<{ claims: V1CollectorClaims; privateLabel: string | null; }>; export declare function prepareV1Collector(input?: { publicDisplayName?: string | null; privateLabel?: string | null; }): V1PreparedCollector; export declare function assertV1CollectorClaims(value: unknown): asserts value is V1CollectorClaims; //# sourceMappingURL=policy.d.ts.map