import React from "react"; import { Color } from "../theme"; interface PartialColorProps { color: Exclude; } export interface TableCheckboxProps extends Omit, "color">, Partial { children?: React.ReactNode; } export declare const TableCheckbox: ({ children, onClick: defaultOnClick, className, color, ...props }: TableCheckboxProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};