import React from "react"; import { ControlledProps } from "../form/controlled"; import { SegmentOption } from "./SegmentOption"; import { StyledProps } from "../_type"; export interface SegmentMultipleProps extends ControlledProps, StyledProps { options?: SegmentOption[]; /** * 分组 */ groups?: { [groupKey: string]: React.ReactNode; }; /** * 是否为无边框样式 * @default false */ rimless?: boolean; /** * 包含分组时,外层分组容器自定义类名 * @since 2.6.11 */ groupClassName?: string; /** * 包含分组时,外层分组容器自定义样式 * @since 2.6.11 */ groupStyle?: React.CSSProperties; } export declare const SegmentMultiple: React.FunctionComponent> & { defaultLabelAlign: string; };