interface Information { name?: string; about?: string; age?: number | null; anotherNames?: string[]; boobsType?: string; tattoos?: string | undefined; activeYears?: string; cupSize?: string; bodyType?: string; height?: string; weight?: string; eyeColor?: string; hairColor?: string; images?: string[]; } export default function getInformation(query: string): Promise;