import { type ButtonProps } from "@arc-ui/components/Button"; import { type AuthorProps } from "../../Author/Author"; export interface FeaturePostCtaFooter { type: "cta"; button: Pick< ButtonProps, "label" | "onClick" | "href" | "target" | "ariaLabel" >; author?: AuthorProps; }