import React from "react"; import type { PolymorphicComponentPropsWithRef } from "src/types"; import { type PictogramButtonProps } from "../../PictogramButton/PictogramButton"; import type { ContentColor } from "../types"; type ContentPictogramButtonProps = Omit & { "aria-label"?: string; "aria-labelledby"?: string; iconColor?: ContentColor; }; type ContentPictogramButtonComponent = (props: PolymorphicComponentPropsWithRef) => React.ReactNode | null; export declare const ContentPictogramButton: ContentPictogramButtonComponent; export {};