import type { Author as AuthorV1_2 } from "../v1_2/responses.js";
export interface Author extends AuthorV1_2 {
    title?: string;
    von: string;
    junior: string;
}
export interface PseudonymousAuthor {
    key: string;
    died: boolean;
    pseudonym: string;
    pkgs?: Array<string>;
}
export interface ApiVersion {
    version: '1.3';
}
export * from "../v1_2/responses.js";
