import { Property } from 'csstype';
export interface ListItemVariables {
    minHeight: string;
    rootPadding: string;
    headerLineHeight: string;
    headerFontSize: string;
    gap: string;
    zIndex: number;
    headerMediaFontSize: string;
    headerMediaLineHeight: string;
    importantFontWeight: Property.FontWeight;
    contentFontSize: string;
    contentLineHeight: string;
    contentMediaFontSize: string;
    contentMediaLineHeight: string;
    selectableFocusHoverColor: string;
    selectableFocusHoverBackgroundColor: string;
    selectedColor: string;
    selectedBackgroundColor: string;
}
export declare const listItemVariables: (siteVariables: any) => ListItemVariables;
