import { l } from '@atproto/lex'; declare const $nsid = "app.bsky.graph.referencelistoptout"; type $nsid = typeof $nsid; export { $nsid }; /** Record requesting that its author be omitted from the public presentation of a reference list. This record is only enforced when the subject list's current purpose is app.bsky.graph.defs#referencelist. AppView indexes at most one record per actor and list pair, and ignores duplicate records. */ type Main = { $type: 'app.bsky.graph.referencelistoptout'; /** * Canonical, DID-based AT URI of the app.bsky.graph.list record from which the author requests omission. */ subject: l.AtUriString; createdAt: l.DatetimeString; }; export type { Main }; /** Record requesting that its author be omitted from the public presentation of a reference list. This record is only enforced when the subject list's current purpose is app.bsky.graph.defs#referencelist. AppView indexes at most one record per actor and list pair, and ignores duplicate records. */ declare const main: l.RecordSchema<"tid", "app.bsky.graph.referencelistoptout", l.Validator, Omit>>; export { main }; declare const $type = "app.bsky.graph.referencelistoptout"; type $type = typeof $type; export { $type }; export declare const $isTypeOf: (value: TValue) => value is l.TypedRecord<"app.bsky.graph.referencelistoptout", TValue>; export declare const $build: { (input: Omit, "$type">): { $type: "app.bsky.graph.referencelistoptout"; subject: l.AtUriString; createdAt: l.DatetimeString; }; (input: Omit, "$type">): { $type: "app.bsky.graph.referencelistoptout"; subject: l.AtUriString; createdAt: l.DatetimeString; }; }; export declare const $assert: (input: unknown, options?: l.ValidateOptions) => asserts input is { $type: "app.bsky.graph.referencelistoptout"; subject: l.AtUriString; createdAt: l.DatetimeString; }; export declare const $check: (input: unknown, options?: l.ValidateOptions) => void; export declare const $cast: (input: I, options?: l.ValidateOptions) => I & { $type: "app.bsky.graph.referencelistoptout"; subject: l.AtUriString; createdAt: l.DatetimeString; }; export declare const $ifMatches: (input: I, options?: l.ValidateOptions) => (I & { $type: "app.bsky.graph.referencelistoptout"; subject: l.AtUriString; createdAt: l.DatetimeString; }) | undefined; export declare const $matches: (input: I, options?: l.ValidateOptions) => input is I & { $type: "app.bsky.graph.referencelistoptout"; subject: l.AtUriString; createdAt: l.DatetimeString; }; export declare const $parse: (input: unknown, options?: l.ParseOptions) => { $type: "app.bsky.graph.referencelistoptout"; subject: l.AtUriString; createdAt: l.DatetimeString; }; export declare const $safeParse: (input: unknown, options?: l.ParseOptions) => l.ValidationResult<{ $type: "app.bsky.graph.referencelistoptout"; subject: l.AtUriString; createdAt: l.DatetimeString; }>; export declare const $validate: (input: I, options?: l.ValidateOptions) => I & { $type: "app.bsky.graph.referencelistoptout"; subject: l.AtUriString; createdAt: l.DatetimeString; }; export declare const $safeValidate: (input: I, options?: l.ValidateOptions) => l.ValidationResult; //# sourceMappingURL=referencelistoptout.defs.d.ts.map