import type { MaterialIconName } from './catalogue'; import type { IconSource } from '../Icon/types'; import type { IconVariant } from './types'; /** * materialIconSource — creates an `IconSource` function for use with the * generic `` component. * * @param name A valid `MaterialIconName` (e.g. `'star'`) * @param variant Icon style variant. Defaults to `'filled'`. * @returns An `IconSource` callback `({ size, color }) => ReactElement` * * @example * */ export declare function materialIconSource(name: MaterialIconName, variant?: IconVariant): IconSource; //# sourceMappingURL=materialIconSource.d.ts.map