import * as React from "react";
interface Props {
    centered?: boolean;
    hasIcon: boolean;
    contentWidth?: string | null;
}
declare const ButtonPrimitiveContentChildren: ({ children, hasIcon, contentWidth, centered, }: React.PropsWithChildren<Props>) => JSX.Element;
export default ButtonPrimitiveContentChildren;
