import React from 'react'; export interface ExpanderProps extends React.PropsWithChildren { /** The initial state of the expander */ state?: 'expanded' | 'collapsed'; /** The label for the Expand CTA */ expandLabel?: string; /** The label for the collapse CTA */ collapseLabel?: string; /** Show the expander only on mobile resolutions */ onlyMobile?: boolean; /** Id of the component */ id: string; } export declare const ExpanderServer: React.FC; export default ExpanderServer;