import * as React from 'react';
import { OptionalComponentPropAndHTMLAttributes } from '../../types';
export declare type SideBarProps = {
    /**
     * SideBar is hidden off screen if this is falsy.
     */
    open?: boolean;
    /**
     * Position the SideBar to the left or right of the screen.
     */
    position: 'left' | 'right';
    /**
     * Remove SideBar shadow
     */
    noShadow?: boolean;
    /**
     * Callback to trigger when the user clicks outside of the `SideBar`.
     */
    onClickOutside(event: React.MouseEvent<HTMLDivElement>): void;
} & OptionalComponentPropAndHTMLAttributes;
declare const _default: React.MemoExoticComponent<(props: SideBarProps) => JSX.Element>;
export default _default;
