import { Bits } from '../types'; /** * Converts a string into an array of bits. Ignores all characters except 1 and 0. * * @example * toBits('10 10 12$%_.0') => [1,0,1,0,1,0] * * @param {String} string the string to convert * @returns {Array} resulting array of bits */ declare const _default: (string: string) => Bits; export default _default;