/** * Props for the TeacherIcon component. */ type TeacherIconProps = { size?: number; color?: string; }; /** * Renders a teacher/graduation cap icon. * * @param props - SVG properties augmented with an optional `size` * * @private internal subcomponent used by various components */ export declare function TeacherIcon({ size, color }: TeacherIconProps): import("react/jsx-runtime").JSX.Element; export {};