import generate from './generate';
declare const presetPrimaryColors: Record<string, string>;
declare const presetPalettes: PalettesProps;
declare const presetDarkPalettes: PalettesProps;
declare const red: string[] & {
    primary?: string | undefined;
};
declare const volcano: string[] & {
    primary?: string | undefined;
};
declare const gold: string[] & {
    primary?: string | undefined;
};
declare const orange: string[] & {
    primary?: string | undefined;
};
declare const yellow: string[] & {
    primary?: string | undefined;
};
declare const lime: string[] & {
    primary?: string | undefined;
};
declare const green: string[] & {
    primary?: string | undefined;
};
declare const cyan: string[] & {
    primary?: string | undefined;
};
declare const blue: string[] & {
    primary?: string | undefined;
};
declare const geekblue: string[] & {
    primary?: string | undefined;
};
declare const purple: string[] & {
    primary?: string | undefined;
};
declare const magenta: string[] & {
    primary?: string | undefined;
};
declare const grey: string[] & {
    primary?: string | undefined;
};
declare const gray: string[] & {
    primary?: string | undefined;
};
export declare type PalettesProps = Record<string, string[] & {
    primary?: string;
}>;
export { generate, presetPalettes, presetDarkPalettes, presetPrimaryColors, red, volcano, orange, gold, yellow, lime, green, cyan, blue, geekblue, purple, magenta, grey, gray, };
//# sourceMappingURL=index.d.ts.map