import { Meta, StoryObj } from '@storybook/react-vite'; import { default as SearchBar } from './SearchBar'; declare const meta: Meta; export default meta; type Story = StoryObj; /** * Main Story for the SearchBar component. This must contains the `args` * and `parameters` properties in this object. */ export declare const WithControls: Story; export declare const isClearableExample: Story; export declare const HelperErrorTextComponentExample: Story; export declare const ErrorState: Story; export declare const DisabledState: Story; export declare const WithSearchElement: Story; export declare const WithCustomHeading: Story; export declare const HeadingDescriptionExample: Story; export declare const SearchBarValueExample: Story;