/**
 *
 * @param {String} code
 * @returns {Boolean}
 */
export function isOrganicProductionCode(code: string): boolean;
/**
 * Returns a JavaScript boolean from an Excel string value of '0' or '1'
 *
 * @param {String} excelLikeBoolean
 * @returns {Boolean}
 */
export function toBoolean(excelLikeBoolean: string): boolean;
/**
 *
 * @param {UnifiedCulture[]} cultures
 * @returns {function(String):UnifiedCulture[]}
 */
export function createCpfResolver(cultures: UnifiedCulture[]): (arg0: string) => UnifiedCulture[];
export type UnifiedCulture = import('../index.js').UnifiedCulture;
export type PacCulture = import('../index.js').PacCulture;
