import { TextureFlags, TransformationProps } from '../types';
import React from 'react';
import { FilamentBuffer } from '../native/FilamentBuffer';
export type SelectorProps = {
    byName: string;
} | {
    byIndex: number;
};
export type TextureMap = {
    materialName: string;
    textureSource: FilamentBuffer;
    textureFlags?: TextureFlags;
};
export type ModifierProps = TransformationProps & {
    textureMap?: TextureMap;
};
export type EntitySelectorProps = SelectorProps & ModifierProps;
export declare function EntitySelector(props: EntitySelectorProps): React.JSX.Element;
//# sourceMappingURL=EntitySelector.d.ts.map