export const DEFAULT_STATE: any;
export default SidePanel;
/**
 * Checkout the {@link http://talend.github.io/ui/main/containers/?selectedKind=SidePanelExample&selectedStory=Default|examples}
 * @param {object} props react props
 */
declare class SidePanel extends RComponent<any, any, any> {
    static displayName: string;
    static propTypes: any;
    constructor(props: any, context: any);
    onToggleDock(): void;
    render(): import("react/jsx-runtime").JSX.Element;
}
declare namespace SidePanel {
    export { ACTION_TYPE_LINK };
}
import { Component as RComponent } from 'react';
import { ACTION_TYPE_LINK } from './constants';
