import { type PropsWithChildren } from 'react'; import { type ButtonProps } from '../Button'; export type ProductProps = ButtonProps & { logo: (props: PropsWithChildren<{}>) => JSX.Element; name: string; }; export declare const Product: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default Product;