import { Story } from '@storybook/preact/types-6-0'; import { ReviewItem, Props, ReviewBlockProps } from './ReviewItem'; declare const meta: { component: typeof ReviewItem; title: string; decorators: ((...args: any) => any)[]; argTypes: { to: { type: { name: string; required: boolean; }; }; linkLabel: { type: { name: string; required: boolean; }; }; linkAccessibilityLabel: { type: { name: string; required: boolean; }; }; }; }; export default meta; export declare const defaultState: Story; export declare const withLink: Story; export declare const withAriaLabelForLink: Story; export declare const withNoWrap: Story; export declare const reviewBlock: Story; export declare const reviewBlockWithHiddenTitle: Story;