import { ExpanderProps } from '../components/Expander'; import React from 'react'; import './Expander.stories.scss'; type ArgsType = ExpanderProps & { structuredContent: any; classNames?: string; }; declare const _default: { title: string; component: React.FC; tags: string[]; }; export default _default; export declare const OnlyServer: { (args: ArgsType): React.JSX.Element; args: { state?: "expanded" | "collapsed"; expandLabel?: string; collapseLabel?: string; onlyMobile?: boolean; id: string; children?: React.ReactNode | undefined; structuredContent: any; classNames?: string; }; }; export declare const WithClient: { (args: ArgsType): React.JSX.Element; args: { state?: "expanded" | "collapsed"; expandLabel?: string; collapseLabel?: string; onlyMobile?: boolean; id: string; children?: React.ReactNode | undefined; structuredContent: any; classNames?: string; }; }; export declare const OnlyMobileWithClient: { (args: ArgsType): React.JSX.Element; args: { state?: "expanded" | "collapsed"; expandLabel?: string; collapseLabel?: string; onlyMobile?: boolean; id: string; children?: React.ReactNode | undefined; structuredContent: any; classNames?: string; }; }; export declare const OnlyMobileServer: { (args: ArgsType): React.JSX.Element; args: { state?: "expanded" | "collapsed"; expandLabel?: string; collapseLabel?: string; onlyMobile?: boolean; id: string; children?: React.ReactNode | undefined; structuredContent: any; classNames?: string; }; }; export declare const NoMoreElements: (args: any) => React.JSX.Element;