interface Config {
    skipEmpty?: boolean;
}
declare const toList: <T>(val: T | T[], config?: Config) => T[];
export default toList;
