export declare const darken: (inputColor: string, amount: number) => string; export declare const lighten: (inputColor: string, amount: number) => string; export declare const alpha: (inputColor: string, amount: number) => string; export declare const mix: (baseColor: string, mixColor: string, amount: number) => string; export declare const rem: (pxValue: string | number, baseFontSize?: number) => string; export declare const fromPx: (pxValue: string) => number; export declare const em: (pxValue: number, baseFontSize: number) => string; export declare const pxFromRem: (remValue: string, baseFontSize?: number) => string; export declare const outline: (baseColor: string, width?: number) => { boxShadow: string; }; export declare const remToNumber: (value: string) => number; export * from './types'; //# sourceMappingURL=index.d.ts.map