import type { Options } from '../types';
export interface IndividualProps {
    /** Already existing legal entity id */
    legalEntityId: string;
    /** View, can be inline or modal. Defaults to inline */
    view?: 'modal' | 'inline';
    options: Options;
}
