import type { StoryObj } from '@storybook/react'; import RoundedTextField from './RoundedTextField'; declare const meta: { component: typeof RoundedTextField; tags: string[]; args: { focusColor: string; helperTextColor: string; outlineColor: string; backgroundColor: string; textColor: string; readOnly: false; borderRadius: number; padding: string; fontSize: string; errorColor: string; fontWeight: string; multiline: false; cantEdit: false; }; }; export default meta; type Story = StoryObj; export declare const Empty: Story; export declare const EmptyLabel: Story; export declare const Default: Story; export declare const Focused: Story; export declare const FocusedNoLabel: Story; export declare const WithValue: Story; export declare const Multiline: Story; export declare const WithHelperText: Story; export declare const WithValueandLabel: Story; export declare const WithMaxLength: Story; export declare const Full: Story; export declare const Error: Story; export declare const ErrorColor: Story; export declare const DifferentColors: Story;