export type CustomValues = Record; export type Config = { __skipReadmeVersion: boolean; template: string; output: string; prefix: string; format: "hex" | "hex-ns" | "rgb" | "rgb-ns" | "rgb-array" | "rgb-function" | "hsl" | "hsl-ns" | "hsl-array" | "hsl-function"; stripSpaces: boolean; watch: boolean; }; export type UserOptions = Partial; export declare const resolveConfig: (flags?: UserOptions) => Config & Partial;