type Options = { keepSpaces?: boolean | undefined; stopwords?: string[] | undefined; }; export declare function titleCase(value: string, options?: Options): string; export {};