import React from 'react';
export interface PersonProps {
    size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | number;
    color?: string;
    style?: any;
}
export declare const Person: React.FC<PersonProps>;
//# sourceMappingURL=Person.native.d.ts.map