import { ThemeOption } from "../types";
interface Output<T> {
    result: T | null;
    errors: Object;
}
export default function useValidate<T, K>(validateType: "options" | "shades", validateInput: T): Output<T> | {
    result: ThemeOption;
    errors: {};
};
export {};
