interface Options {
    locale?: string;
    gender?: string;
}
export default function lastName(options?: Options): string;
