export type Shape = number[]; export type Shapeish = Shape | number; export type Strides = number[]; export declare function getShape(shapeish: Shapeish): Shape; export declare function shapeSize(shape: Shape): number; export declare function defaultStrides(shape: Shape): Strides;