import type { GlobalTheme } from '../global'; declare const getCheckboxTheme: (theme: GlobalTheme) => { colors: { borders: { default: string; checked: string; disabled: string; readonly: string; }; checkboxBorder: { default: string; checked: string; disabled: string; readonly: string; }; }; space: { iconTop: number; wrapperPadding: number; iconDescriptionPadding: number; inlineCheckboxGap: number; inlineCheckboxMargin: number; }; sizes: { icon: number; inlineCheckbox: { medium: number; large: number; }; }; radii: { wrapper: number; icon: number; }; borderWidths: { wrapper: number; icon: number; }; }; export default getCheckboxTheme;