import React from 'react'; import type { PropValidators, TreeBrowserButtonTheme } from '@instructure/shared-types'; import type { WithStyleProps } from '@instructure/emotion'; import type { TreeBrowserButtonProps, TreeBrowserButtonStyle } from '../TreeButton/props'; import { CollectionData } from '../props'; type TreeBrowserNodeOwnProps = Pick & { onKeyDown?: (e: React.KeyboardEvent, data: CollectionData) => void; /** * The children to be rendered within the `` */ children?: React.ReactNode; }; type PropKeys = keyof TreeBrowserNodeOwnProps; type AllowedPropKeys = Readonly>; type TreeBrowserNodeProps = TreeBrowserNodeOwnProps & WithStyleProps; declare const propTypes: PropValidators; declare const allowedProps: AllowedPropKeys; export type { TreeBrowserNodeProps }; export { propTypes, allowedProps }; //# sourceMappingURL=props.d.ts.map