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