/**
 * @param s A string in camel, pascal, snake, kebab and spaced case format.
 * @returns A string in start case.
 * @example toStartCase("convertMy_string") === "Convert My String"
 */
export default function toStartCase(s: string): string;
/**
 * @param s A string in camel, pascal, snake, kebab and spaced case format.
 * @returns A list of strings in title case.
 * @example toStartCase("convertMy_string") === ["Convert", "My", "String"]
 */
export declare function toStartCaseWords(s: string): string[];
//# sourceMappingURL=toStartCase.d.ts.map