import STWWeaponSchematic from './STWWeaponSchematic';
import type { STWSchematicEvoType, STWSchematicMeleeSubType } from '../../../resources/structs';
import type { STWProfileSchematicData } from '../../../resources/httpResponses';
import type Client from '../../Client';
declare class STWMeleeWeaponSchematic extends STWWeaponSchematic {
    type: 'melee';
    subType: STWSchematicMeleeSubType;
    constructor(client: Client, id: string, data: STWProfileSchematicData & {
        type: 'melee';
        subType: STWSchematicMeleeSubType;
        evoType: STWSchematicEvoType;
    });
}
export default STWMeleeWeaponSchematic;
