import { FC } from "react"; import { SvgProps } from "react-native-svg"; export type CentralIconBaseProps = { size?: string | number; } & SvgProps; export declare const CentralIconBase: FC;