import React from 'react'; import { type IconProps } from './core'; interface IconPieChartProps extends IconProps { base?: '12' | '16' | '24'; } export declare function IconPieChart({ base, ...props }: IconPieChartProps): React.JSX.Element; export {};