import { type CheckboxProps, type SpiritCheckboxProps } from '../../types'; export interface CheckboxStyles { classProps: { root: string; text: string; label: string; input: string; helperText: string; validationText: string; }; props: CheckboxProps; } export declare function useCheckboxStyleProps(props: SpiritCheckboxProps): CheckboxStyles;