import { StoryObj } from '@storybook/html';
import { HighlightedTextProps } from './HighlightedText';
declare const meta: {
title: string;
render: (args: HighlightedTextProps) => DocumentFragment;
argTypes: {
autoEscape: {
type: "boolean";
};
caseSensitive: {
type: "boolean";
};
searchWords: {
options: string[];
};
textToHighlight: {
type: "string";
};
};
};
export default meta;
type Story = StoryObj;
export declare const Normal: Story;