/// import { FluentIconsProps } from "./FluentIconsProps.types"; export declare type FluentIcon = { (props: FluentIconsProps): JSX.Element; displayName?: string; }; export declare type CreateFluentIconOptions = { flipInRtl?: boolean; }; export declare const createFluentIcon: (displayName: string, width: string, paths: string[], options?: CreateFluentIconOptions | undefined) => FluentIcon;