import React from "react";
export interface ImageCheckLabelProps {
    className?: string;
    children: React.ReactNode;
}
declare const ImageCheck: {
    (): void;
    Label: ({ className, children }: ImageCheckLabelProps) => JSX.Element;
    Input: ({ ...props }: React.InputHTMLAttributes<HTMLElement>) => JSX.Element;
    Figure: ({ ...props }: React.ImgHTMLAttributes<HTMLElement>) => JSX.Element;
};
export default ImageCheck;
