import type { WithNormalizedProps } from "../../global"; interface EekInput extends Omit { max: string; min: string; rating: string; a11yText?: string; size?: "regular" | "large"; } export interface Input extends WithNormalizedProps { } declare const _default: (input: Input) => number | null; export default _default;