import type { SVGAttributes } from "svelte/elements";
interface Props extends SVGAttributes<SVGSVGElement> {
    class?: string;
}
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * Props
 * ## Props
 * @prop class: className
 * @prop ...restProps
 */
declare const ProfileCardIcon: import("svelte").Component<Props, {}, "">;
type ProfileCardIcon = ReturnType<typeof ProfileCardIcon>;
export default ProfileCardIcon;
