import { Gemstone } from '@gpa-gemstone/application-typings';
interface IProps<T> extends Gemstone.TSX.Interfaces.IBaseFormProps<T> {
    /**
      * Array of checkboxes with their IDs and labels
      * @type {{ ID: string; Label: string }[]}
    */
    Checkboxes: {
        ID: string;
        Label: string;
    }[];
}
export default function ArrayCheckBoxes<T>(props: IProps<T>): JSX.Element;
export {};
