UNPKG

411 BTypeScriptView Raw
1import type { Theme } from '@storybook/theming';
2import { ActionDisplay } from '../../models';
3export declare const Wrapper: import("@storybook/theming").StyledComponent<any, Pick<any, string | number | symbol>, Theme>;
4interface ActionLoggerProps {
5 actions: ActionDisplay[];
6 onClear: () => void;
7}
8export declare const ActionLogger: ({ actions, onClear }: ActionLoggerProps) => JSX.Element;
9export {};