import type { AsElementType, OtherHTMLAttributes } from '@instructure/shared-types'; type AccessibleContentOwnProps = { /** * The text that screenreaders will read. Will not be visible. */ alt?: string; /** * the element type to render the screen reader content as */ as: AsElementType; /** * Content that will be hidden from screenreaders (via `aria-hidden` set to `true`) */ children?: React.ReactNode; }; type PropKeys = keyof AccessibleContentOwnProps; type AllowedPropKeys = Readonly>; type AccessibleContentProps = AccessibleContentOwnProps & OtherHTMLAttributes; declare const allowedProps: AllowedPropKeys; export type { AccessibleContentProps }; export { allowedProps }; //# sourceMappingURL=props.d.ts.map