import { TypeGuard } from './TypeGuard';
export interface Validatable {
    isValid: boolean;
}
export declare const isValidatable: TypeGuard<Validatable>;
