import { Colors } from "../../styles"; interface Props { variant: 'outlined' | 'contained'; avatar: any; color: Colors; } declare const StyledChip: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, Props, never>; declare const ImgAvatar: import("styled-components").StyledComponent<"img", import("styled-components").DefaultTheme, {}, never>; declare const LetterAvatar: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, { color?: string; }, never>; declare const DeleteButton: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, { color: Colors; }, never>; export { StyledChip, ImgAvatar, LetterAvatar, DeleteButton };