import { Selectable } from 'kysely'; import { DidString, HandleString } from '@atproto/syntax'; export interface Actor { did: DidString; handle: HandleString | null; createdAt: string; takedownRef: string | null; deactivatedAt: string | null; deleteAfter: string | null; } export type ActorEntry = Selectable; export declare const tableName = "actor"; export type PartialDB = { [tableName]: Actor; }; //# sourceMappingURL=actor.d.ts.map