/**
 * Parse api action type to its method and processing type.
 * Example,
 * FETCH_GET_USER -> ['get', undefined]
 * FETCH_GET_USER_REQUEST -> ['get', 'request']
 */
export default function getApiInfos(api: string): (string | undefined)[];
