import { ReactNode } from 'react'; export interface CardSiderProps { title?: ReactNode; className?: string; classWidth?: string; width?: string | number; tools?: ReactNode; children?: ReactNode; } export declare const CardSider: ({ title, className, classWidth, tools, children }: CardSiderProps) => import("react/jsx-runtime").JSX.Element;