import { RuntimeFn } from '../../../node_modules/@vanilla-extract/recipes/dist/vanilla-extract-recipes.cjs.d.js'; declare const sidebarStyles: { sidebar: RuntimeFn<{ /** * Specifies where the sidebar should be positioned */ position: { left: { left: number; transform: "translateX(-100%)"; }; right: { right: number; transform: "translateX(100%)"; }; }; /** * Determines if the sidebar is shown or not. */ open: { true: { opacity: number; transform: "translateX(0)"; }; }; }>; overlay: string; }; declare const sidebarPaddingProperties: { none: string; small: `var(--${string})` | `var(--${string}, ${string})`; medium: `var(--${string})` | `var(--${string}, ${string})`; }; export { sidebarPaddingProperties, sidebarStyles };