/// <reference types="react" />
import * as React from 'react';
export interface ICollapsibleSectionControlledExampleState {
    collapsed: boolean;
    clicks: number;
}
export declare class CollapsibleSectionControlledExample extends React.Component<{}, ICollapsibleSectionControlledExampleState> {
    constructor(props: {});
    render(): JSX.Element;
}
