/** * Validates that two values are equal, considering HTML form serialization behavior. * Compares values using normalized comparison that handles type coercion. * * @example * vine.literal('admin') * vine.literal(42) * vine.literal(true) */ export declare const equalsRule: (options: { expectedValue: any; }) => import("../../types.ts").Validation<{ expectedValue: any; }>;