export type MonogramPagoPACompanyShapes = "none" | "circle";
export type MonogramPagoPAMonogramColors = "primary" | "dark" | "light" | "light-primary";
export interface MonogramPagoPACompanyProps {
    /** Provides a human-readable title for the element that contains it. */
    title?: string;
    /** Width of the component. Height is set automatically. */
    size?: number;
    /** The color of the component. */
    color: MonogramPagoPAMonogramColors;
    /** The shape of the component. */
    shape: MonogramPagoPACompanyShapes;
}
export declare const MonogramPagoPACompany: ({ title, size, color, shape, }: MonogramPagoPACompanyProps) => JSX.Element;
