import type { RatingIconTheme } from '@instructure/shared-types'; import type { WithStyleProps, ComponentStyle } from '@instructure/emotion'; type RatingIconOwnProps = { animationDelay?: number; animateFill?: boolean; filled?: boolean; size?: 'small' | 'medium' | 'large'; }; export type RatingIconState = { filled: boolean; }; type PropKeys = keyof RatingIconOwnProps; type AllowedPropKeys = Readonly>; type RatingIconProps = RatingIconOwnProps & WithStyleProps; type RatingIconStyle = ComponentStyle<'ratingIcon' | 'icon'>; declare const allowedProps: AllowedPropKeys; export type { RatingIconProps, RatingIconStyle }; export { allowedProps }; //# sourceMappingURL=props.d.ts.map