import PlayerCharacter from "./PlayerCharacter"; export declare const isPc: (someValue: any) => someValue is PlayerCharacter; export declare const asPc: (someValue: any) => PlayerCharacter; export declare const isPcArray: (someValue: any) => someValue is PlayerCharacter[]; export declare const asPcArray: (someValue: any) => PlayerCharacter[];