import { type LinkProps } from "react-router-dom";
import { FaqType } from "../../types/initialDataType";
export declare function FaqCard({ id, title, to, className, }: {
to?: string;
} & Omit<LinkProps, "to"> & Omit<FaqType, "content">): import("react/jsx-runtime").JSX.Element;