export type FilterFunction = (...args: Array) => boolean; /** * Determines whether not all values consist of '-' (with a minimum of two) * * @export * @param {...Array} values * @returns {boolean} */ export declare function divider(...values: Array): boolean; /** * Determines whether not all values are undefined * * @export * @param {...Array} values * @returns {boolean} */ export declare function defined(...values: Array): boolean;