import type { ExtensionContext, QuickPickItem } from "vscode";
export type UseRecentSelectedComponentsProps = {
    context: ExtensionContext;
};
export default function useRecentSelectedComponents(props: UseRecentSelectedComponentsProps): {
    get(): QuickPickItem[];
    update(selectedComponent: QuickPickItem): void;
};
export type UseRecentSelectedComponentsReturn = ReturnType<typeof useRecentSelectedComponents>;
