import * as React from 'react'; import { PositionType } from './SidebarPopup.types.part'; export interface SidebarPopupProps { position?: PositionType; size?: string; open?: boolean; onClose?: () => void; } export declare const SidebarPopup: React.FC & { inner: { readonly SidebarContainer: any; readonly CloseButton: React.SFC> & { inner: { readonly StyledCloseButton: any; readonly Icon: React.FC & { inner: { readonly StyledIcon: any; }; }; }; }; readonly SidebarBlocker: React.FC & { inner: { readonly StyledSidebarBlocker: any; }; }; }; };