import { Property } from 'csstype';
import { ItemType } from '../../../types';
import { TeamsSchemeMappingWithAreas } from '../../types';
export declare const dividerColorAreas: "foreground"[];
export declare type DividerColorSchemeMapping = TeamsSchemeMappingWithAreas<ItemType<typeof dividerColorAreas>>;
export interface DividerVariables {
    colorScheme: DividerColorSchemeMapping;
    dividerColor: string;
    textColor: string;
    textFontSize: string;
    textLineHeight: string;
    importantFontWeight: Property.FontWeight;
    dividerPadding: string;
}
export declare const dividerVariables: (siteVars: any) => DividerVariables;
