import "./index.css"; export type ColorCardProps = Pick, "id" | "className" | "children"> & { as?: "a" | "div" | "button" | "span" | "section" | "article"; href?: string; }; export declare function ColorCard({ as: Component, children, className, href, ...other }: ColorCardProps): import("react").JSX.Element; export declare function CardStepList({ children, className, ...props }: React.HTMLAttributes): import("react").JSX.Element; export declare function CardStep({ children, className, ...props }: React.HTMLAttributes): import("react").JSX.Element; export declare function CardColumn({ children, className, minor, ...other }: React.HTMLAttributes & { minor?: boolean; }): import("react").JSX.Element; export declare function CardDetail({ children, className, label, primary, ...other }: React.HTMLAttributes & { label?: React.ReactNode; primary?: boolean; }): import("react").JSX.Element; export declare function CardLabel({ children, className, ...other }: React.HTMLAttributes): import("react").JSX.Element;