import { CustomStyles } from './node_modules/neurons';
interface Props {
    openPanelOnLoad?: boolean;
    customStyles?: CustomStyles;
    attachPanelBottom?: boolean;
    attachPanelTop?: boolean;
    attachPanelRight?: boolean;
    attachPanelLeft?: boolean;
    floatBtnTopRight?: boolean;
    floatBtnBottomRight?: boolean;
    floatBtnTopLeft?: boolean;
    floatBtnBottomLeft?: boolean;
}
export default function Panel({ openPanelOnLoad, customStyles, attachPanelTop, attachPanelRight, attachPanelBottom, attachPanelLeft, floatBtnTopRight, floatBtnBottomRight, floatBtnTopLeft, floatBtnBottomLeft, }: Props): import('./node_modules/react/jsx-runtime').JSX.Element;
export {};
