import { BaseSopOperation } from './_Base';
import { CoreGroup } from '../../../core/geometry/Group';
import { InputCloneMode } from '../../../engine/poly/InputCloneMode';
import { DefaultOperationParams } from '../../../core/operations/_Base';
interface TextureCopySopParams extends DefaultOperationParams {
    textureName: string;
}
export declare class TextureCopySopOperation extends BaseSopOperation {
    static readonly DEFAULT_PARAMS: TextureCopySopParams;
    static readonly INPUT_CLONED_STATE: InputCloneMode[];
    static type(): Readonly<'TextureCopy'>;
    cook(inputContents: CoreGroup[], params: TextureCopySopParams): Promise<CoreGroup>;
}
export {};
