import { CardProps } from '../components/Card'; import { ArrowConfig } from '../type'; interface WrapperProps { arrowConfig: ArrowConfig; } export declare const CircularWrapper: import("styled-components").StyledComponent<"div", any, WrapperProps, never>; interface CardWrapperProps extends CardProps { bgConfig?: { color: any; imgUrl: string; }; } export declare const CardWrapper: import("styled-components").StyledComponent<"div", any, CardWrapperProps, never>; interface CardContentWrapperProps { activeContainStyle: any; } export declare const CardContentWrapper: import("styled-components").StyledComponent<"div", any, CardContentWrapperProps, never>; export {};