import { EditorialCardCvaProps } from "./styles"; export type EditorialCardProps = Readonly<{ image?: React.ReactNode; cardLink?: React.ReactElement; categoryLink?: React.ReactElement; title?: string; description?: string; authorName?: string; authorAvatar?: React.ReactNode; border?: boolean; }> & EditorialCardCvaProps; export declare const EditorialCard: ({ image, cardLink, categoryLink, direction, title, description, authorName, authorAvatar, border, ...rest }: EditorialCardProps) => import("react").JSX.Element; //# sourceMappingURL=EditorialCard.d.ts.map