import type { IIconSubset } from '@fluentui/style-utilities'; import * as React_2 from 'react'; /** * Context for providing the IconSubset. */ export declare const IconContext: React_2.Context; /** * Component to contextually override one or more of the default SVG icons */ export declare const IconProvider: React_2.FunctionComponent; /** * Props for the IconProvider component. */ export declare interface IconProviderProps extends React_2.HTMLAttributes { /** * Defines the icons provided by the user. */ icons: IIconSubset; } /** * 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; export { }