export interface TrimArrayOptions { /** Whether to allow empty strings. @default false */ allowEmpty?: boolean; } /** Trims each string in the array, removing any empty strings. */ export declare function trimArray(array: string[], options?: TrimArrayOptions): string[];