/**
 * @param {State} state
 * @returns {{ node: SpaceLiteral, end: number }}
 */
export default function space(state: State): {
    node: SpaceLiteral;
    end: number;
};
export type State = import("../parse.js").State;
export type SpaceLiteral = import("../index.js").SpaceLiteral;
//# sourceMappingURL=space.d.ts.map