import React from 'react';
/**
 * @public
 */
export interface ISiderProps {
    /**
     * 侧边栏的类名。
     */
    className?: string;
    /**
     * 侧边栏的样式。
     */
    style?: React.CSSProperties;
    /**
    * 侧边栏的内容。
    */
    children?: React.ReactNode;
    /**
    * 侧边栏的宽度。
    */
    width?: number | string;
}
