import { CSSProperties } from 'react';
export interface ProductButtonsProps {
    className?: string;
    style?: CSSProperties;
}
export declare const ProductButtons: ({ className, style }: ProductButtonsProps) => JSX.Element;
