export declare const validateConfectFunctionIdentifier: (identifier: string) => void; /** * Validate that `identifier` is suitable as a Convex table name (and, equivalently, * as a `confect/tables/.ts` filename). * * Rules: * - Must match `/^[A-Za-z][A-Za-z0-9_]*$/` — letter-leading, alphanumeric plus * underscore. No `$` (not a valid Convex table name character); no leading * `_` (Convex reserves `_` for its system tables). * - Must not be a reserved JavaScript identifier, so the name can also be used * as a binding name in generated code without escaping. */ export declare const validateConfectTableIdentifier: (identifier: string) => void; //# sourceMappingURL=Identifier.d.ts.map