import type { VNode } from "vue"; export interface IconBaseProps { name?: string; color?: string; ariaLabel?: string; } /** * Icon Base Component */ export declare const IconBase: ({ name, color, ariaLabel }: IconBaseProps, { attrs, slots }: { attrs?: Record; slots?: { default?: () => VNode | VNode[]; }; }) => any; /** * Lock Icon */ export declare const LockIcon: { (): any; displayName: string; };