import { Meta, StoryObj } from '@storybook/web-components';
import { IInputFeedbackLevel } from './modus-wc-input-feedback';
import { ModusSize } from '../types';
interface InputFeedbackArgs {
    'custom-class'?: string;
    icon?: string;
    level: IInputFeedbackLevel;
    message?: string;
    size?: ModusSize;
}
declare const meta: Meta<InputFeedbackArgs>;
export default meta;
type Story = StoryObj<InputFeedbackArgs>;
export declare const Default: Story;
export declare const WithCustomModusIcon: Story;
export declare const ShadowDomParent: Story;
