import * as React from "react";
interface Props {
    margin?: string | null;
    width?: string | null;
    height?: string | null;
}
export declare const StyledButtonPrimitiveIconContainer: import("styled-components").StyledComponent<({ className, children }: any) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
declare const ButtonPrimitiveIconContainer: ({ margin, width, height, children, }: React.PropsWithChildren<Props>) => JSX.Element;
export default ButtonPrimitiveIconContainer;
