import { Theme } from '@cleartrip/ct-design-theme'; import { TypographyColor } from '@cleartrip/ct-design-typography'; import { ChipSize } from './type'; interface ChipStyleProps { theme: Theme; size: ChipSize; isSelected: boolean; isDisabled: boolean; topIcon?: boolean; } declare const getLabelColor: (isDisabled: boolean) => TypographyColor; export declare const getChipStyles: ({ theme, size, isDisabled, isSelected, topIcon }: ChipStyleProps) => { backgroundColor: string; borderWidth: 0; borderColor?: undefined; paddingVertical: 8; borderRadius: number; borderStyle: "solid"; } | { backgroundColor: string; borderColor: string; borderWidth: 1.5; paddingVertical: 8; borderRadius: number; borderStyle: "solid"; } | { backgroundColor: string; borderColor: string; borderWidth: 1; paddingVertical: 8; borderRadius: number; borderStyle: "solid"; } | { backgroundColor: string; borderWidth: 0; borderColor?: undefined; height: 32; borderRadius: number; borderStyle: "solid"; } | { backgroundColor: string; borderColor: string; borderWidth: 1.5; height: 32; borderRadius: number; borderStyle: "solid"; } | { backgroundColor: string; borderColor: string; borderWidth: 1; height: 32; borderRadius: number; borderStyle: "solid"; }; export { getLabelColor }; //# sourceMappingURL=style.d.ts.map