import { type ComponentPropsWithoutRef } from 'react'; type SidebarProps = ComponentPropsWithoutRef<'aside'> & { state: boolean; action: (state: boolean) => void; }; declare function Sidebar({ className, children, id, onKeyDown, state, action, ...props }: SidebarProps): import("react/jsx-runtime").JSX.Element; export default Sidebar; export type { SidebarProps }; export { Sidebar };