import { Context } from 'koishi';
export declare const spaceStationCrewConfig: {
    professionName: string;
    effect: string;
    requirements: string;
    Jobtransfer: boolean;
    costcoins: number;
}[];
export declare const syndicatePirateConfig: {
    professionName: string;
    effect: string;
    requirements: string;
    Jobtransfer: boolean;
    costredcrystal: number;
}[];
export declare function checkTransferRequirements(ctx: Context, handle: string, profession: string): Promise<{
    success: boolean;
    message?: string;
}>;
