import React from 'react';
interface CheckboxProps {
    label: string;
    color?: string;
    accentColor?: string;
}
export declare function StkCheckbox({ label, color, accentColor }: CheckboxProps): React.JSX.Element;
export {};
