import React, { JSX, ReactNode } from 'react'; export declare const content = "Some content"; export declare const openText = "Open dialog"; export declare const title = "Title text"; export declare const Component: React.FC<{ actions?: JSX.Element[]; }>; declare const _default: { title: string; decorators: ((storyFn: () => ReactNode) => JSX.Element)[]; excludeStories: string[]; }; export default _default; export declare const Standard: { render: () => JSX.Element; name: string; }; export declare const WithCustomActions: { render: () => JSX.Element; name: string; };