import { Theme } from '../theme/Theme.js';
/**
 * A validator function which checks whether an input value is a {@link Theme}.
 * Doesn't stop the validator chain.
 *
 * @category XML
 */
export declare function validateTheme(value: unknown): [value: Theme, stop: boolean];
