import { TSESTree } from '@typescript-eslint/utils'; export declare function splitWords(value: string): string[]; export declare function toSnakeCase(value: string): string; export declare function toLowerCamelCase(value: string): string; type Prefer = 'snake_case' | 'lowerCamelCase'; export declare function getExpectedName(propertyName: string, prefer: Prefer): string; export declare function getStaticNameProperty(objectArgument: TSESTree.CallExpressionArgument | undefined): TSESTree.Property | undefined; export declare function getStringLiteralValue(property: TSESTree.Property | undefined): string | undefined; export {};