import * as React from 'react'; import type { IIconSubset } from '@fluentui/style-utilities'; import type { IconProviderProps } from './IconProvider.types'; /** * Context for providing the IconSubset. */ export declare const IconContext: React.Context; /** * Hook to access the Icon subset. Returns the icons that will override the default. * This can be overridden contextually using the `IconProvider`. */ export declare const useIconSubset: () => IIconSubset | undefined; /** * Component to contextually override one or more of the default SVG icons */ export declare const IconProvider: React.FunctionComponent;