import { PlayerOptions } from "../structures/Player";
/**
 * Validates the provided PlayerOptions object.
 * @param options - The options to validate.
 * @throws {TypeError} Throws if any required option is missing or invalid.
 */
export default function playerCheck(options: PlayerOptions): void;
