import React from 'react';
export interface SiderProps {
    /**
     * @description width
     * @default 200
     */
    width?: string | number;
}
declare type NativeAttrs = Omit<React.KeygenHTMLAttributes<any>, keyof SiderProps>;
declare const defaultProps: {
    width: number;
};
export declare type MergedSiderProps = typeof defaultProps & SiderProps;
declare const _default: React.ForwardRefExoticComponent<SiderProps & NativeAttrs & React.RefAttributes<HTMLSelectElement>>;
export default _default;
