import { ItemType } from '../../../../themes/types'; import { TeamsSchemeMappingWithAreas } from '../../types'; export declare const segmentColorAreas: "foreground"[]; export declare type SegmentColorSchemeMapping = TeamsSchemeMappingWithAreas>; export interface SegmentVariables { colorScheme: SegmentColorSchemeMapping; color: string; disabledColor: string; backgroundColor: string; disabledBackgroundColor: string; disabledBorderColor: string; borderRadius: string | number; borderStyle: string; borderWidth: string; boxShadow: string; padding: string; } export declare const segmentVariables: (siteVariables: any) => SegmentVariables;