import { IAppTheme } from "../../../types"; export type TCheckboxSize = "sm" | "md"; type TCheckboxStyles = { borderColor: string; backgroundColor: string; checkColor: string; }; type TCheckboxStylesMap = TCheckboxStyles & { hover: TCheckboxStyles; disabled: TCheckboxStyles; focus: TCheckboxStyles & { ringColor: string; }; size: string; borderRadius: string; checkboxMargin: string; checkSize: string; checkStrokeWidth: string; labelGap: string; }; export declare const getCheckboxStyles: (theme: IAppTheme, size: TCheckboxSize, checked: boolean, withLabel: boolean) => TCheckboxStylesMap; export {};