interface Options {
    length?: number;
}
export default function word(options?: Options): string;
