/** * The filepath naming transform modes that the library supports */ declare const transformModes: readonly ["camelCase", "kebab-case", "PascalCase", "passthrough", "snake_case"]; /** * A filepath naming transform modes that the library supports */ export type TransformMode = (typeof transformModes)[number]; /** * A type-safe function to create a mode */ declare const transformMode: (value: T) => T; /** * Predicate to check if a value is a mode */ declare function isTransformMode(value: unknown): value is TransformMode; export { isTransformMode, transformMode, transformModes, };