import STWSchematic from './STWSchematic';
import type { STWSchematicTrapSubType } from '../../../resources/structs';
import type Client from '../../Client';
import type { STWProfileSchematicData } from '../../../resources/httpResponses';
declare class STWTrapSchematic extends STWSchematic {
    type: 'trap';
    subType: STWSchematicTrapSubType;
    evoType: never;
    constructor(client: Client, id: string, data: STWProfileSchematicData & {
        type: 'trap';
        subType: STWSchematicTrapSubType;
        evoType: never;
    });
}
export default STWTrapSchematic;
