///
export interface PluginIconProps {
[key: string]: any;
/** Plugin key */
id: string;
/** Icon size */
size?: number;
/**
* Used to locate this view in end-to-end tests.
*/
testID?: string;
}
export declare const PluginIcon: import("react").ComponentType;