import { Point } from "@lincode/math"; import { ExtractProps } from "./utils/extractProps"; import Nullable from "./utils/Nullable"; import { Blending, ColorString } from "./ITexturedStandard"; export default interface ITexturedBasic { color: Nullable; opacity: Nullable; texture: Nullable; alphaMap: Nullable; textureRepeat: Nullable; textureFlipY: Nullable; textureRotation: Nullable; depthTest: Nullable; blending: Nullable; } export declare const texturedBasicSchema: Required>; export declare const texturedBasicDefaults: Partial>;