import * as React from 'react';
export interface CommandIconProps {
    set?: string;
    icon?: string;
    size?: number;
}
export declare const CommandIcon: React.FC<CommandIconProps>;
