import { mat2 } from './mat2.type.js'; /** * Creates a new mat2 initialized with the given values. */ export declare function mat2_from_values(m00: number, m01: number, m10: number, m11: number): mat2; export declare function mat2_from_values>(m00: number, m01: number, m10: number, m11: number, ctor: new (size: number) => GType): mat2; import { f32 } from '../../types/numbers/f32/f32.type.js'; export declare function mat2_from_values_f32(m00: f32, m01: f32, m10: f32, m11: f32): mat2; import { f64 } from '../../types/numbers/f64.type.js'; export declare function mat2_from_values_f64(m00: f64, m01: f64, m10: f64, m11: f64): mat2; import { u8 } from '../../types/numbers/u8/u8.type.js'; export declare function mat2_from_values_u8(m00: u8, m01: u8, m10: u8, m11: u8): mat2; import { u16 } from '../../types/numbers/u16/u16.type.js'; export declare function mat2_from_values_u16(m00: u16, m01: u16, m10: u16, m11: u16): mat2; import { u32 } from '../../types/numbers/u32/u32.type.js'; export declare function mat2_from_values_u32(m00: u32, m01: u32, m10: u32, m11: u32): mat2; import { i8 } from '../../types/numbers/i8.type.js'; export declare function mat2_from_values_i8(m00: i8, m01: i8, m10: i8, m11: i8): mat2; import { i16 } from '../../types/numbers/i16.type.js'; export declare function mat2_from_values_i16(m00: i16, m01: i16, m10: i16, m11: i16): mat2; import { i32 } from '../../types/numbers/i32.type.js'; export declare function mat2_from_values_i32(m00: i32, m01: i32, m10: i32, m11: i32): mat2;