import type { WithElementRef } from 'bits-ui';
import type { HTMLAttributes } from 'svelte/elements';
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
    mobileClasses?: string;
    mobileOnly?: boolean;
};
declare const Sidebar: import("svelte").Component<$$ComponentProps, {}, "">;
type Sidebar = ReturnType<typeof Sidebar>;
export default Sidebar;
