import React from "react"; import type { SVGProps } from "react"; export type CentralIconBaseProps = { size?: string | number; ariaHidden?: boolean; } & SVGProps; export declare const CentralIconBase: React.FC< CentralIconBaseProps & { ariaLabel?: string; } >;