/** * Split a string to a tuple of its leading white space and the rest. * * @param data The input text. */ export declare function splitLeadingBlank(data: string): [string, string];