import React from "react";
import type { PersonaId } from "@/theme/designMatrix";
import "./persona-picker.css";
export interface PersonaPickerProps {
    className?: string;
    id?: string;
    orientation?: "auto" | "horizontal" | "vertical";
    onPersonaChange?: (personaId: PersonaId) => void;
    showMeta?: boolean;
}
export declare const PersonaPicker: React.FC<PersonaPickerProps>;
//# sourceMappingURL=PersonaPicker.d.ts.map