import { StoryObj } from '@storybook/react'; declare const meta: { component: import('react').ForwardRefExoticComponent<{ autoWidth?: boolean; step?: number; decimalPlaces?: number; } & import('../../RawInput').TRawInput & import('..').TNumberInputNativeAttrs & import('react').RefAttributes>; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { autoWidth: { description: string; type: { name: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; align: { description: string; type: { name: "string"; }; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; step: { description: string; type: { name: "number"; }; table: { defaultValue: { summary: string; }; }; }; value: { description: string; type: { name: "number"; }; }; decimalPlaces: { description: string; type: { name: "number"; }; table: { defaultValue: { summary: string; }; }; }; min: { description: string; type: { name: "number"; }; }; max: { description: string; type: { name: "number"; }; }; externalStyle: { description: string; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;