import { PaddingProps } from "styled-system";
import { SidebarProps } from "./sidebar.component";
type StyledSidebarProps = Pick<SidebarProps, "onCancel" | "position" | "size" | "width">;
declare const StyledSidebar: import("styled-components").StyledComponent<"div", any, {
    theme: object;
} & StyledSidebarProps, "theme">;
declare const StyledSidebarContent: import("styled-components").StyledComponent<"div", any, PaddingProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>>, never>;
export { StyledSidebar, StyledSidebarContent };
