import React from 'react'; import type { OtherHTMLAttributes } from '@instructure/shared-types'; type SimpleSelectGroupOwnProps = { /** * The label associated with the group options. */ renderLabel: React.ReactNode | (() => React.ReactNode); /** * Children of type `` that will be considered part of the group. */ children?: React.ReactNode; }; type PropKeys = keyof SimpleSelectGroupOwnProps; type AllowedPropKeys = Readonly>; type SimpleSelectGroupProps = SimpleSelectGroupOwnProps & OtherHTMLAttributes; declare const allowedProps: AllowedPropKeys; export type { SimpleSelectGroupProps }; export { allowedProps }; //# sourceMappingURL=props.d.ts.map