UNPKG

fui-fancyui

Version:
90 lines (89 loc) 2.15 kB
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<HTMLInputElement>>; 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<typeof meta>; export declare const Primary: Story;