import { OperatorImplementation, OperatorInitialization } from '../../../operators'; export interface DepthToSpaceAttributes { mode: 'DCR' | 'CRD'; blocksize: number; } export declare const depthToSpace: OperatorImplementation; export declare const parseDepthToSpaceAttributes: OperatorInitialization;