/**
 * Props for the EmailIcon component.
 */
type EmailIconProps = {
    size?: number;
    color?: string;
};
/**
 * Renders an email/envelope icon.
 *
 * @param props - SVG properties augmented with an optional `size`
 * @private internal subcomponent used by various components
 */
export declare function EmailIcon({ size, color }: EmailIconProps): import("react/jsx-runtime").JSX.Element;
export {};
