import { ThemeType } from './themeTypes'; export declare const primaryColor50: (theme: ThemeType) => "#EBF0FF" | "#EFE8F8"; export declare const primaryColor100: (theme: ThemeType) => "#C0D0FF" | "#CFB8E9"; export declare const primaryColor200: (theme: ThemeType) => "#A1B9FF" | "#B795DE"; export declare const primaryColor300: (theme: ThemeType) => "#7698FF" | "#9665CF"; export declare const primaryColor400: (theme: ThemeType) => "#5C85FF" | "#8247C6"; export declare const primaryColor500: (theme: ThemeType) => "#6319B8" | "#3366FF"; export declare const primaryColor600: (theme: ThemeType) => "#2E5DE8" | "#5A17A7"; export declare const primaryColor700: (theme: ThemeType) => "#2448B5" | "#461283"; export declare const primaryColor800: (theme: ThemeType) => "#1C388C" | "#360E65"; export declare const primaryColor900: (theme: ThemeType) => "#152B6B" | "#2A0B4D"; export declare const secondaryColor50: (theme: ThemeType) => "#FDF0EF" | "#EBF6EE"; export declare const secondaryColor100: (theme: ThemeType) => "#FAD1CD" | "#C0E4CA"; export declare const secondaryColor200: (theme: ThemeType) => "#F8BAB4" | "#A2D7B0"; export declare const secondaryColor300: (theme: ThemeType) => "#F49B92" | "#77C58C"; export declare const secondaryColor400: (theme: ThemeType) => "#F2877D" | "#5DB975"; export declare const secondaryColor500: (theme: ThemeType) => "#EF695D" | "#34A853"; export declare const secondaryColor600: (theme: ThemeType) => "#D96055" | "#2F994C"; export declare const secondaryColor700: (theme: ThemeType) => "#AA4B42" | "#25773B"; export declare const secondaryColor800: (theme: ThemeType) => "#833A33" | "#1D5C2E"; export declare const secondaryColor900: (theme: ThemeType) => "#642C27" | "#164723"; export declare const primaryButtonColor: (theme: ThemeType) => "#6319B8" | "#3366FF"; export declare const primaryButtonTextColor: (theme: ThemeType) => "white" | "primary"; export declare const secondaryButtonTextColor: (theme: ThemeType) => string; export declare const defaultButtonCurved: (theme: ThemeType) => boolean; export declare const primaryTextColor: (theme: ThemeType) => string; export declare const textThemeColor: (theme: ThemeType) => "#6319B8" | "#3366FF"; export declare const linkTextColor: (theme: ThemeType) => string; export declare const curvedDefaultInputHelper: (theme: ThemeType) => boolean; export declare const getColors: (theme: ThemeType) => { PRIMARY_COLOR_50: string; PRIMARY_COLOR_100: string; PRIMARY_COLOR_200: string; PRIMARY_COLOR_300: string; PRIMARY_COLOR_400: string; PRIMARY_COLOR_500: string; PRIMARY_COLOR_600: string; PRIMARY_COLOR_700: string; PRIMARY_COLOR_800: string; PRIMARY_COLOR_900: string; SECONDARY_COLOR_50: string; SECONDARY_COLOR_100: string; SECONDARY_COLOR_200: string; SECONDARY_COLOR_300: string; SECONDARY_COLOR_400: string; SECONDARY_COLOR_500: string; SECONDARY_COLOR_600: string; SECONDARY_COLOR_700: string; SECONDARY_COLOR_800: string; SECONDARY_COLOR_900: string; PRIMARY_TEXT_COLOR: string; THEME_TEXT_COLOR: string; PRIMARY_BUTTON_TEXT_COLOR: string; SECONDARY_BUTTON_TEXT_COLOR: string; LINK_TEXT_COLOR: string; BLACK: "#000000"; WHITE: "#FFFFFF"; TRANSPARENT: "transparent"; GREY_10: "#FAFAFA"; GREY_20: "#DFDFDF"; GREY_30: "#EBEEF2"; NEUTRAL_50: "#E6E7E8"; NEUTRAL_100: "#B2B4B7"; NEUTRAL_200: "#8D8F95"; NEUTRAL_300: "#595C64"; NEUTRAL_400: "#393D46"; NEUTRAL_500: "#070C18"; NEUTRAL_600: "#060B16"; NEUTRAL_700: "#050911"; NEUTRAL_800: "#04070D"; NEUTRAL_900: "#03050A"; TEXT_GREY_50: "#F1F2F3"; TEXT_GREY_100: "#D3D6D9"; TEXT_GREY_200: "#BEC2C6"; TEXT_GREY_300: "#A1A6AC"; TEXT_GREY_400: "#8E959C"; TEXT_GREY_500: "#727A83"; TEXT_GREY_600: "#686F77"; TEXT_GREY_700: "#51575D"; TEXT_GREY_800: "#3F4348"; TEXT_GREY_900: "#303337"; SUCCESS_50: "#E9EBF8"; SUCCESS_100: "#B6DDC4"; SUCCESS_200: "#92CCA8"; SUCCESS_300: "#60B580"; SUCCESS_400: "#41A667"; SUCCESS_500: "#129041"; SUCCESS_600: "#10833B"; SUCCESS_700: "#0D662E"; SUCCESS_800: "#0A4F24"; SUCCESS_900: "#083C1B"; ERROR_50: "#FDECEB"; ERROR_100: "#F9C5C0"; ERROR_200: "#F6A9A2"; ERROR_300: "#F28178"; ERROR_400: "#EF695D"; ERROR_500: "#EB4335"; ERROR_600: "#D63D30"; ERROR_700: "#A73026"; ERROR_800: "#81251D"; ERROR_900: "#631C16"; INPROGRESS_50: "#F7F3E8"; INPROGRESS_100: "#E5DBB9"; INPROGRESS_200: "#D8CA97"; INPROGRESS_300: "#C6B167"; INPROGRESS_400: "#BBA249"; INPROGRESS_500: "#AA8B1C"; INPROGRESS_600: "#9B7E19"; INPROGRESS_700: "#796314"; INPROGRESS_800: "#5E4C0F"; INPROGRESS_900: "#473A0C"; ORANGE_50: "#FEEDE7"; ORANGE_500: "#F94810"; YELLOW_50: "#FFEEB1"; YELLOW_500: "#FFC904"; GREEN_50: "#E9F9EF"; GREEN_500: "#22C55E"; RED_50: "#FBE6E9"; RED_500: "#D80027"; INFO: "#357DEA"; ORANGE: "#FF5B16"; };