import { GpuShaderDefinition } from '../../gpu/porters'; export interface ComponentProps { /** * How far the wipe has progressed (0 = fully visible, 1 = fully wiped away) * * @default 0.5 */ progress: number; /** * Size of each square as a fraction of the frame width * * @default 0.1 */ blockSize: number; /** * How softly each square fades out (0 = hard-edged squares) * * @default 0.15 */ softness: number; /** * Reverse the order the squares wipe in * * Accepts a boolean value (`true` or `false`). * @default false */ invert: boolean; } export declare const componentDefinition: GpuShaderDefinition; export default componentDefinition; //# sourceMappingURL=index.d.ts.map