import type { IconType } from 'media-icons';
export interface IconProps {
    /**
     * The type of icon. You can find a complete and searchable list on our website - see our
     * [media icons catalog](https://vidstack.io/media-icons).
     */
    type: IconType | undefined;
}
export { type IconType };
