import type { HTMLProps } from 'react';
export interface LogoShapeProps extends HTMLProps<HTMLDivElement> {
foreground?: string;
background?: string;
}
export declare function LogoShape({ children, foreground, background, ...props }: LogoShapeProps): import("react/jsx-runtime").JSX.Element;