declare const dictionary: ({
    name: string;
    type: string;
    description: string;
    hsla: string;
    hex: string;
    value: string;
    id: string;
    fontStyle?: undefined;
    fontWeight?: undefined;
    fontSize?: undefined;
    lineHeight?: undefined;
    fontFamily?: undefined;
} | {
    name: string;
    type: string;
    description: string;
    value: string;
    id: string;
    hsla?: undefined;
    hex?: undefined;
    fontStyle?: undefined;
    fontWeight?: undefined;
    fontSize?: undefined;
    lineHeight?: undefined;
    fontFamily?: undefined;
} | {
    name: string;
    type: string;
    description: string;
    value: string;
    hsla?: undefined;
    hex?: undefined;
    id?: undefined;
    fontStyle?: undefined;
    fontWeight?: undefined;
    fontSize?: undefined;
    lineHeight?: undefined;
    fontFamily?: undefined;
} | {
    name: string;
    type: string;
    description: string;
    value: string;
    fontStyle: string;
    fontWeight: string;
    fontSize: string;
    lineHeight: string;
    fontFamily: string;
    id: string;
    hsla?: undefined;
    hex?: undefined;
})[];
export default dictionary;
