import type { HTMLInputAttributes } from 'svelte/elements';
type $$ComponentProps = {
    step?: number;
    max?: number;
    min?: number;
    value?: number;
    Class?: HTMLInputAttributes['class'];
    style?: HTMLInputAttributes['style'];
    buttonClass?: HTMLInputAttributes['class'];
    buttonStyle?: HTMLInputAttributes['style'];
    placeholder?: HTMLInputAttributes['placeholder'];
    disabled?: HTMLInputAttributes['disabled'];
    required?: HTMLInputAttributes['required'];
    readonly?: HTMLInputAttributes['readonly'];
    attributes?: HTMLInputAttributes;
    onChange?: (value: number) => unknown;
};
declare const Decimal: import("svelte").Component<$$ComponentProps, {}, "value">;
type Decimal = ReturnType<typeof Decimal>;
export default Decimal;
