type LayoutType = "icon-bottom" | "icon-end" | "icon-hide" | "icon-start" | "icon-top" | "label-hide"; interface SegmentOption { label?: string; render?: string; icon?: string; [key: string]: any; } interface Props { label?: string; render?: string; icon?: string; } export { LayoutType, SegmentOption, Props };